發(fā)送自定義廣播
- 通過 Intent 發(fā)送
- 必須設(shè)置action
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
public void click(View v) {
//發(fā)送自定義廣播
Intent intent = new Intent();
//自定義action
intent.setAction("yhbbroadcast1");
sendBroadcast(intent);
}
}
接收自定義廣播
- 只需要接收的action:name與自定義的一致就可以
<receiver
android:name=".CustomReceiver"
android:enabled="true"
android:exported="true" >
<intent-filter>
<action android:name="yhbbroadcast1"></action>
</intent-filter>
</receiver>
最后編輯于 :
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者