如何从通知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");
}