在尝试使用MyActivity上的CheckBox“活动时,我在DDMS中看到以下错误,以启动名为”MyService“的服务:
W/ActivityManager( 73): Unable to start service Intent { cmp=com.example.android.myprogram/.MyService }: not found
我使用了教程http://developer.android.com/resources/tutorials/views/hello-formstuff.html并将提供的代码添加到onCreate()方法的末尾。我在MyActivity.java和MyService.java中单独指定了类。
package com.example.android.myprogram;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.CheckBox;
public class MyActivity extends Activity {
private static final String TAG = "MyActivity";
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
final CheckBox checkbox = (CheckBox) findViewById(R.id.checkbox);
checkbox.setOnClickListener(new OnClickListener() {
public void onClick(View v) {
// Perform action on clicks, depending on whether it's now checked
if (((CheckBox) v).isChecked()) {
// TODO: Add code to START the service
Log.d(TAG, "startService from checkbox");
startService(new Intent(MyActivity.this, MyService.class));
} else {
// TODO: Add code to STOP the service
Log.d(TAG, "stopService from checkbox");
stopService(new Intent(MyActivity.this, MyService.class));
}
}
});
}
}
我的清单文件确实有以下内容我已经尝试了完整的命名空间,短名称,使用每次搜索的intent-filter等等。我不是说有什么是正确的。我只是把它留在停止点。
<service android:name=".MyService">
<intent-filter><action android:name="com.example.android.myprogram.MyService"></action>
</intent-filter>
</service>
最后,我决定将其服务分解为最低限度的服务:
package com.example.android.myprogram;
import android.app.Service;
import android.content.Intent;
import android.os.IBinder;
import android.util.Log;
public class MyService extends Service {
private static final String TAG = "MyService";
@Override
public IBinder onBind(Intent intent) {
return null;
}
@Override
public void onCreate() {
Log.d(TAG, "onCreate");
//code to execute when the service is first created
}
@Override
public void onDestroy() {
Log.d(TAG, "onDestroy");
//code to execute when the service is shutting down
}
@Override
public void onStart(Intent intent, int startid) {
Log.d(TAG, "onStart");
//code to execute when the service is starting up
}
}
我是非常非常非常新的Java / Android编程和编程(但是学习)所以我确信这是用户错误,可能是其他人的常识。任何建议都会很棒。
答案 0 :(得分:17)
我一直在四处挖掘,正如我想的那样,我正在犯一个明显的菜鸟错误。在AndroidManifest.xml中,我有&lt;服务&GT;声明&lt;应用程序&gt;而不是嵌套在里面。
答案 1 :(得分:0)
您无需编写意图过滤器,因为您明确启动了服务。 如果您是Android新手,请使用以下链接,这将对您非常有帮助。 它也有服务范例。 http://saigeethamn.blogspot.com/2009/08/android-developers-tutorial-for.html
答案 2 :(得分:0)
请参阅我的回答 Unable to start Service Intent
答案 3 :(得分:0)
清理manifest.xml中的行
<intent-filter>
<action android:name="com.example.android.myprogram.MyService">
</action>
</intent-filter>