远程视图中的Android通知信息

时间:2019-01-15 11:04:47

标签: java android

如何从通知contentView和bigcontentView中提取信息? 我可以使用此代码从普通通知中获取信息,但如何从远程视图获取信息

public void onNotificationPosted(StatusBarNotification sbn) {


    String pack = sbn.getPackageName();
    String ticker ="";
    if(sbn.getNotification().tickerText !=null) {  
    ticker = sbn.getNotification().tickerText.toString();  
    }

    Bundle extras = sbn.getNotification().extras;
    String title ="";
    if(extras.getCharSequence("android.title") != null){
        title = extras.getString("android.title");
    }
    String text ="";
    if (extras.getCharSequence("android.infoText") != null) {
        text =(String) extras.getCharSequence("android.infoText");
    }

0 个答案:

没有答案