次のコードがあります。これは、受信者が特定のアクションにintentFilterを使用している場合はうまく機能しますが、代わりに、受信者がカテゴリ全体を待機している場合は機能しません。Web でいくつかの例を試してみましたが、なぜうまくいかないのかわかりません。また、アクション参照を削除して、カテゴリだけを残そうとしました... 誰か pls を見てもらえますか?
私の活動:
public class Receiver1Activity extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
myReceiver = new MyReceiver();
IntentFilter filter = new IntentFilter();
filter.addCategory(MyService.MY_CATEGORY);
registerReceiver(myReceiver, filter);
}
@Override
protected void onStart() {
super.onStart();
Log.i("activity", "onStart");
Intent intent = new Intent(this, MyService.class);
startService(intent);
}
@Override
protected void onPause() {
super.onPause();
Log.i("activity", "onPause");
unregisterReceiver(myReceiver);
}
private MyReceiver myReceiver;
}
私のサービス:
public class MyService extends Service {
public static final String MY_CATEGORY = "com.receiver1.mycategory";
public static final String MY_ACTION = "com.receiver1.myaction";
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
Intent intent2 = new Intent(MY_ACTION);
intent2.addCategory(MY_CATEGORY);
sendBroadcast(intent2);
return START_NOT_STICKY;
}
@Override
public IBinder onBind(Intent intent) {
// TODO Auto-generated method stub
return null;
}
}
私の受信機:
public class MyReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context arg0, Intent arg1) {
Log.i("MyReceiver", "onreceive");
}
}
私のマニフェスト:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.receiver1"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk android:minSdkVersion="10" />
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
<activity
android:name=".Receiver1Activity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<service android:name=".MyService">
<!--
<intent-filter >
<action android:name="com.receiver1.myaction2"/>
</intent-filter>
-->
</service>
</application>
</manifest>