首页 > 解决方案 > 意图服务使我的应用程序崩溃?

问题描述

像这个问题一样,堆栈溢出时会回答不同的问题。但是这些问题中使用的代码与我使用的代码不同。当按下主要活动上的按钮时,我只是在调用 intent_service。下面的链接引用了一个图像,代码显示了在按下按钮时如何调用 intent_service;

:MainActivity 上的“发送意向服务”按钮

package com.example.mk141.intentservicenotworking;
import android.content.Intent;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
public class MainActivity extends AppCompatActivity
{
    @Override
    protected void onCreate(Bundle savedInstanceState)
    {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
    }
    public void start_intent_service(View view)
    {
        Intent intent_service=new Intent(this,Intent_Service.class);
        startActivity(intent_service);
    }
}

Intent_Service 类中的代码如下:

package com.example.mk141.intentservicenotworking;
import android.content.Intent;
import android.app.IntentService;
import android.util.Log;
public class Intent_Service extends IntentService
{
    private static final String 
    TAG="com.example.mk141.intentservicenotworking";
    public Intent_Service(String name)
    {
        super(name);
    }
    @Override
    protected void onHandleIntent(Intent intent)
    {
        Log.i(TAG,"Intent Service Started");//I disabled the Inspection but 
                                            // still crashing
                                            // when Intent Service is called
    }
}

在上面的类中,当调用意图服务时会出现一个日志,即“Intent Service Started”。我还创建了一个标签并编辑了一个过滤器,以便只显示一条日志消息,如下图所示;

编辑过滤器 1

编辑过滤器 2

出现错误,即 TAG 中的字符最多为 23 个。但禁用检查后,错误完成,如下图所示;

禁用检查

但是当我运行我的程序并按下 Start intent Service 时,它​​会崩溃,如下图所示;

应用崩溃 1 应用崩溃 2

如果他知道如何解决此错误,请帮助我,因为如果不解决此错误,我将无法继续。提前致谢!

标签: javaandroidonclickcrashintentservice

解决方案


利用

startService(intent_service); 

代替

startActivity(intent_service);

标签

不要在 LOG 语句中使用超过 23 个字符的 TAG。


推荐阅读