android studio廣播

2020-09-29 15:01:12

簡單使用

步驟:

  1. 傳送一條廣播
//傳送一條廣播
//動作
                Intent intent=new Intent("sunweihao");
                //傳送廣播
                sendBroadcast(intent);
  1. 接收廣播:
public class MyBroadcastReceiver extends BroadcastReceiver {
    private static final String  ACTION1="sunweihao";
    private static final String  ACTION2="sunweihao2";
    @Override
    public void onReceive(Context context, Intent intent) {
    //根據廣播來進行邏輯處理
        if (ACTION1==intent.getAction()) {
            Toast.makeText(context, "孫偉豪", Toast.LENGTH_SHORT).show();
        }else if (ACTION2==intent.getAction()) {
            Toast.makeText(context, "孫偉豪2", Toast.LENGTH_SHORT).show();
        }

    }
}
  1. 註冊廣播
<!--註冊廣播
        表示可範例化
        表示可以被其他應用接收
        -->
        <receiver android:name=".MyBroadcastReceiver"
            android:enabled="true"
            android:exported="true">
            <intent-filter>
                <action android:name="sunweihao"/>
                <action android:name="sunweihao2"/>
            </intent-filter>

        </receiver>