第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

應(yīng)用程序在通知點(diǎn)擊后從后臺(tái)打開后運(yùn)行功能

應(yīng)用程序在通知點(diǎn)擊后從后臺(tái)打開后運(yùn)行功能

慕標(biāo)琳琳 2022-12-21 12:41:42
我對(duì) Android 開發(fā)還很陌生。當(dāng)應(yīng)用程序處于后臺(tái)時(shí),我已經(jīng)能夠收到彈出通知。當(dāng)我點(diǎn)擊它時(shí),它成功加載了應(yīng)用程序備份。但是,我想從頁面加載警報(bào),但僅當(dāng)它從通知點(diǎn)擊打開時(shí)才加載。下面是生成通知的代碼。任何幫助,將不勝感激。private void getNotificationForPasswordChange() {    NotificationManager mNotificationManager =            (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {        CharSequence name = "Hello";// The user-visible name of the channel.        int importance = NotificationManager.IMPORTANCE_HIGH;        NotificationChannel mChannel = new NotificationChannel(CHANNEL_ID, name, importance);        if (mNotificationManager != null)            mNotificationManager.createNotificationChannel(mChannel);    }    Bitmap icon = BitmapFactory.decodeResource(getResources(),            R.mipmap.ic_launcher);    Intent i=new Intent(this, MainActivity.class);    i.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);    i.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);    i.addFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP);    PendingIntent mainIntent = PendingIntent.getActivity(this, 0,            i, PendingIntent.FLAG_UPDATE_CURRENT);    Notification notification = new NotificationCompat.Builder(this, CHANNEL_ID)            .setContentTitle("Pronto Tracker")            .setTicker("Pronto Tracker")            .setContentText("Cannot connect to server. Location is not being updated.")            .setSmallIcon(R.mipmap.ic_pronto_logo)            .setLargeIcon(Bitmap.createScaledBitmap(icon, 128, 128, false))            .setOngoing(true).setContentIntent(mainIntent).                    build();    mNotificationManager.notify(Constants.PASSWORD_CHANGE_NOTIFICATION_ID, notification);}
查看完整描述

2 回答

?
婷婷同學(xué)_

TA貢獻(xiàn)1844條經(jīng)驗(yàn) 獲得超8個(gè)贊

您可以傳遞帶有通知 PendingIntent 的警報(bào)消息。在 PendingIntent .putExtra() 中添加要顯示為警報(bào)的消息或值,并在 PendingIntent 中指定要以對(duì)話框或任何形式顯示警報(bào)的活動(dòng)。


 Intent intent = new Intent(Application.getAppContext(), MainActivity.class);

 intent.putExtra("is_notification", true);

 intent.putExtra("alert_message", "Hello World!");

 intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);

 PendingIntent lowIntent = PendingIntent.getActivity(mContext, 100, intent, PendingIntent.FLAG_CANCEL_CURRENT);

之后將 PendingIntent 添加到您的通知中。您需要做的第二件事是在用戶點(diǎn)擊通知時(shí)從 Intent 獲取數(shù)據(jù)。在您的 MainActivity 中添加以下代碼以從 Intent 獲取數(shù)據(jù):-


if (getIntent() != null) {

   String message = getIntent().getStringExtra("alert_message");

   boolean isNotification = getIntent().getBooleanExtra("is_notification", false);


    if(is_notification){

       // show alert

      }

    }


查看完整回答
反對(duì) 回復(fù) 2022-12-21
?
當(dāng)年話下

TA貢獻(xiàn)1890條經(jīng)驗(yàn) 獲得超9個(gè)贊

您應(yīng)該在 MainActivity 上使用 onCreate 函數(shù) 添加此代碼來分解您的意圖: Intent receivedIntent = getIntent();



查看完整回答
反對(duì) 回復(fù) 2022-12-21
  • 2 回答
  • 0 關(guān)注
  • 140 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)