私は少しのプロジェクトを作成しようとしています:アクティビティには、ブロードキャストを送信するボタンがあります。放送受信機は、メッセージを受信したときにトーストを表示する。しかし放送は決して受信されません。BroadcastReceiverは<reciever ...>で動作しません。</reciever>
送信者:
public class Task2Activity extends Activity implements OnClickListener {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
View myButton = findViewById(R.id.broadcast_button);
myButton.setOnClickListener(this);
}
public void onClick(View v) {
switch (v.getId()) {
case R.id.broadcast_button:
Intent active = new Intent("yury.ku.SIMPLE_BROADCAST");
this.sendBroadcast(active);
break;
}
}
}
受信機:
public class SimpleReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
final String action = intent.getAction();
Toast.makeText(context, "Broadcast received" , Toast.LENGTH_LONG).show();
if (action.equals("yury.ku.SIMPLE_BROADCAST")) {
Toast.makeText(context, "Broadcast received" , Toast.LENGTH_LONG).show();
}
}
}
マニフェスト:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="yury.ku"
android:versionCode="1"
android:versionName="1.0">
<uses-sdk android:minSdkVersion="13" />
<application android:icon="@drawable/icon" android:label="@string/app_name" android:enabled="true">
<activity android:name=".Task2Activity"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<action android:name="yury.ku.SIMPLE_BROADCAST"/>
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<reciever android:name=".SimpleReceiver" android:enabled="true" android:exported="true">
<intent-filter>
<action android:name="yury.ku.SIMPLE_BROADCAST"/>
</intent-filter>
</reciever>
</application>
</manifest>
。あなたは、活動やサービスから乾杯しなければなりません。放送受信機から乾杯するには、ハンドラを使う必要がありますが、実装方法はわかりません。 – Jakar