0

SOの質問の説明と例を読みましたが、それでも単純なBroadcastReceiverを実装できず、何も受信しません。誰かが次のコードについてアドバイスを提供できますか?

tnx

私の活動:

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);
        IntentFilter filter = new IntentFilter(MyService.MY_ACTION);
        registerReceiver(new MyReceiver(), filter);
        Intent intent = new Intent();
        startService(intent);
    }
}

私の受信機:

public class MyReceiver extends BroadcastReceiver {
    @Override
    public void onReceive(Context arg0, Intent arg1) {
        Log.i("MyReceiver", "onreceive");       
    }
}

ブロードキャストを送信する私のサービス:

public class MyService extends Service {

    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);
        sendBroadcast(intent2);
        return START_NOT_STICKY;
    }

    @Override
    public IBinder onBind(Intent intent) {
        // TODO Auto-generated method stub
        return null;
    }

}

私のマニフェストファイル:

<?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"></service>
</application>

</manifest>
4

2 に答える 2

1

あなたのサービスが開始されていることを確信していますか? 空のインテントを作成して startService() を呼び出すだけのようです。

あなたの BroadcastReceiver は正しいようです。

于 2012-06-22T17:48:34.883 に答える
0

AndroidManifest.xml にレシーバーを登録する必要があります。そうするまで、Android OS は BroadcastReceiver を見つけることができません。

于 2012-06-22T17:42:25.557 に答える