您好,登錄后才能下訂單哦!
本文地址: http://blog.csdn.net/caroline_wendy/article/details/21590339
Intent可以使用sendBroadcast(), 在應用組件之間廣播事件;
使用BroadReceiver類監聽和響應Broadcast Intent, 需要注冊(register)和過濾器(intent-filter);
構建需要廣播的Intent, 包含Intent標識字符串, 和數據(data, extras), 使用sendBroadcast()發送;
Intent標識字符串, 可以標識要廣播的字符串, 應該是能夠標志的唯一字符串,
public static final String [ACTION_STRING] = "[mzx].[clwang].action.[ACTION_STRING]";
Intent包含數據, 進行廣播, 可以使用data屬性指定一個URI, 可以在extras添加額外的基本值;
Intent intent = new Intent("[mzx].[clwang].action.[ACTION_STRING");
sendBroadcast(intent);
使用Broadcast Receiver來監聽Broadcast Intent, 在代碼或manifest中注冊, 使用Intent FIlter表明監聽的Intent(標識符)和數據;
應用程序可以被Intent啟動, 可以創建事件驅動的應用程序;
Broadcast Receiver, 繼承BroadcastReceiver類, 重寫onReceive事件, 進行處理, 必須在5秒之內完成;
代碼注冊:
注冊BroadcastReceiver, 需要使用IntentFilter, 指明標識符; 使用BroadReceiver類, 指明接收器;
注冊: registerReceiver(receiver, filter); 注銷:unregisterReceiver(receiver);
Manifest注冊:
<receiver android:name = ".[Receiver]">
<intent-filter>
<action android:name="[mzx].[clwang].action.[ACTION_STRING">
</intent-filter>
</receiver>
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。