您好,登錄后才能下訂單哦!
這篇文章給大家介紹怎么在Android中利用Intent發送廣播消息,內容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。
Android Intent發送廣播消息
Intent的另一種用途是發送廣播消息,應用程序和Android系統都可以使用Intent發送廣播消息,廣播消息的內容是可以與應用程序密切相關的數據信息,也可以是Android的系統信息,例如網絡連接變化、電池電量變化、接收的短信或系統設置變化等。如果應用程序注冊了BroadcastReceiver,則可以接受到指定的廣播信息。
使用Intent發送廣播消息非常簡單,只須創建一個Intent,并調用sendBroadcast()函數就可把Intent攜帶的信息廣播出去。但需要注意的是,在構造Intent時必須定義一個全局唯一的字符串,用來標識其要執行的動作,通常使用應用程序包的名稱。如果要在Intent傳遞額外數據,可以用Intent的putExtra()方法。下面的代碼構造了用于廣播消息的Intent,并添加了額外的數據,然后調用sendBroadcast()發送廣播消息:
String UNIQUE_STRING="edu.hrbeu.BroadcastReceiverDemo"; Intent intent=new Intent(UNIQUE_STRING); intent.putExtra("key1","value1"); intent.putExtra("key2","value2"); sendBroadcast(intent);
BroadcastReceiver用于監聽廣播消息,可以在AndroidManifest.xml文件或代碼中注冊一個BroadcastReceiver,并使用Intent過濾器指定要處理的廣播消息。創建BroadcastReceiver須要繼承BroadcastReceiver類,并重載onReceive()方法。示例代碼如下:
public class MyBroadcastReceiver extends BroadcastReceiver{ @Override public void onReceive(Context context,Intent intent){ //TODO: React to the Intent received. } }
當Android系統接收到與注冊BroadcastReceiver匹配的廣播消息時,Android系統會自動調用這個BroadcastReceiver接收廣播消息。在BroadcastReceiver接收到與之匹配的廣播消息后,onReceiver()方法會被調用,但onReceive()方法必須要在5秒鐘內執行完畢,否則Android系統會認為該組件失去響應,并提示用戶強行關閉該組件。
下面為一個簡單示例
發送廣播消息關鍵代碼
botton.setOnClickListener(new OnClickListener()){ public void onClick(View view){ Intent intent=new Intent("edu.hrbeu.BroadcastReceiverDemo"); intent.putExtra("message",entryText.getText().toString()); sendBroadcast(intent); } }};
在AndroidManifest.xml 文件中注冊 BroadcastReceiver
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="edu.hrbeu.BroadcastReceiverDemo"> <application android:allowBackup="true" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:supportsRtl="true" android:theme="@style/AppTheme"> <activity android:name=".BroadcastReceiverDemo" android:label="@string/app_name" > <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> <receiver android:name=".MyBroadcastReceiver"> <intent-filter> <action android:name="edu.hrbeu.BroadcastReceiverDemo"/> </intent-filter> </receiver> </application> </manifest>
在AndroidManifest.xml文件中創建了一個< receiver >節點,其中聲明了Intent過濾器的動作為 edu.hrbeu.BroadcastReceiverDemo,這與發送廣播消息中的Intent的動作一致,表明這個BroadcastReceiver可以接受動作為edu.hrbeu.BroadcastReceiverDemo 的廣播消息。
MyBroadcastReceiver.Java中創建了一個自定義的BroadcastReceiver,其核心代碼如下:
public class MyBroadcastReceiver extends BroadcastReceiver{ @Override public void onReceive(Context context,Intent intent){ String msg=intent.getStringExtra("message"); Toast.makeText(context,msg,Toast.LENGTH_SHORT).show(); } }
代碼第一行首先繼承了BroadcastReceiver類,并在第3行重載了onReveive()函數。當接收到AndroidManifest.xml文件定義的廣播消息后,程序將自動調用onReveive()函數進行消息處理。
關于怎么在Android中利用Intent發送廣播消息就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。