在工作之余,把開發(fā)過程中常用的一些代碼備份一下,下面的資料是關(guān)于Android中注冊(cè)一個(gè) BroadcastReceiver的代碼,希望對(duì)碼農(nóng)們有一些用。
創(chuàng)新互聯(lián)專注于萬秀網(wǎng)站建設(shè)服務(wù)及定制,我們擁有豐富的企業(yè)做網(wǎng)站經(jīng)驗(yàn)。 熱誠為您提供萬秀營銷型網(wǎng)站建設(shè),萬秀網(wǎng)站制作、萬秀網(wǎng)頁設(shè)計(jì)、萬秀網(wǎng)站官網(wǎng)定制、微信小程序服務(wù),打造萬秀網(wǎng)絡(luò)公司原創(chuàng)品牌,更為您提供萬秀網(wǎng)站排名全網(wǎng)營銷落地服務(wù)。
registerReceiver(mMasterResetReciever, new IntentFilter(”oms.action.MASTERRESET”));
private BroadcastReceiver mMasterResetReciever = new BroadcastReceiver() {
public void onReceive(Context context, Intent intent){
String action = intent.getAction();
if(”oms.action.MASTERRESET”.equals(action)){
RecoverDefaultConfig();
}
}
};