ブロードキャスト レシーバーを使用してサービスを開始する次のコードを実装しています。ブロードキャスト レシーバーのトーストは正常に動作していますが、サービスが実行されていません。誰が私がどこで間違ったのか教えてもらえますか?
MyReceiver.class
public class MyReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context arg0, Intent arg1) {
// TODO Auto-generated method stub
//Toast.makeText(arg0, "Service", Toast.LENGTH_LONG).show();
Intent myIntent = new Intent(arg0,MyS.class);
arg0.startService(myIntent);
}
}
MyS.class
public class MyS extends Service {
@Override
public IBinder onBind(Intent arg0) {
// TODO Auto-generated method stub
return null;
}
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
// TODO Auto-generated method stub
Toast.makeText(getBaseContext(), "Service started", Toast.LENGTH_LONG).show();
return START_STICKY;
}
}
AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.test.p"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk android:minSdkVersion="8" />
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
<service android:enabled="true"
android:name=".MyS" >
<intent-filter>
<action android:name="com.test.p.MyS" >
</action>
</intent-filter>
</service>
<receiver android:enabled="true"
android:name=".MyReceiver" >
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED"/>
</intent-filter>
</receiver>
</application>
</manifest>