像这样的问题,在堆栈溢出时会回答不同的问题。但是那些问题中使用的代码与我使用的代码不同。当按下主要活动上的按钮时,我只是在调用intent_service。下面的链接引用了一张图片,并且代码显示了按下按钮时如何调用intent_service;
:The "Send Intent Service" Button on 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
}
}
在上面的类中,当调用意图服务(即“意图服务已启动”)时,将出现一个日志。我还创建了一个TAG并编辑了一个过滤器,以使只有一条日志消息显示如下图所示;
存在错误,即TAG中的字符最多可以为23个。但是在禁用“检查”后,错误已完成,如下图所示;
但是当我运行程序并按Start Intent Service时,它崩溃,如下图所示;
如果有人知道如何解决此错误,请帮助我,因为如果不解决此错误,我将无法继续。预先感谢!
答案 0 :(得分:1)
使用
startService(intent_service);
代替
startActivity(intent_service);
对于TAG
请勿在LOG语句中使用超过23个字符的TAG。