溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Android中怎么實(shí)現(xiàn)動態(tài)注冊

發(fā)布時間:2021-06-28 16:19:31 來源:億速云 閱讀:105 作者:Leah 欄目:移動開發(fā)

這期內(nèi)容當(dāng)中小編將會給大家?guī)碛嘘P(guān)Android中怎么實(shí)現(xiàn)動態(tài)注冊,文章內(nèi)容豐富且以專業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

第一種寫法:

首先新建一個Java類,通過"New/Other/Broadcast Receiver",命名為MyReceiver,添加以下內(nèi)容

public static String ACTION="learnbroadcastreceive.MyReceive";

然后添加

public MyReceive{
public void OnReceive(Context context,Intent intent){
Toast.maetText(context,"收到一條廣播",toast.LENGTH_LONG).show();
}
}

然后在MainAcitivity中添加

private Myreceiver receiver=null;

然后添加

public void registeMyReceiver(View view){
if(receive==null){
receive=new MyReceiver();
registerReceiver(receiver,new intentFilter(MyReceive.Action));
}
}
public void unRegisterReceiver(){
if (receive!=null){
unregistReceive(receiver);
receive=null;
}
}
public void sendBc(View view){
sendBroadcast(new Intent(this.MyReceive.ACTION));
}

然后在xml中修改相應(yīng)的部分即可

第二種寫法:

第二種寫法,其實(shí)是將所有代碼都放在MainAcitivity中

private IntentFlier intentfiler
private MyReceiver receive

onCreate中添加

receive=new MyReceiver();
registerReceiver(receiver,new intentFilter(MyReceive.Action));

新建

public void onDestroy(){
super.onDestroy
unregistReceive(receiver);
}
public void OnReceive(Context context,Intent intent){
Toast.maetText(context,"收到一條廣播",toast.LENGTH_LONG).show();
}

上述就是小編為大家分享的Android中怎么實(shí)現(xiàn)動態(tài)注冊了,如果剛好有類似的疑惑,不妨參照上述分析進(jìn)行理解。如果想知道更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI