我想用自定義數據廣播意圖,只有具有此自定義數據的接收者應該收到此意圖,該如何實現?基於自定義數據篩選意圖
這個我怎麼播的意圖:
Intent intent = new Intent();
intent.setAction("com.example");
context.sendBroadcast(intent);
,我定義廣播接收器如下:
<receiver android:name="com.test.myReceiver" android:enabled="true">
<intent-filter>
<action android:name="com.example"></action>
</intent-filter>
</receiver>
清單中定義的接收者不需要以這種方式註冊。它將接收廣播並純粹基於清單條目觸發onReceive()方法。 – Maximus 2011-05-18 03:33:01
啊,我明白了,這是有道理的..感謝修正maximus – 2011-05-18 05:44:05