我正在开发一个Andriod应用程序以提取通知数据(实际上是Google地图的一个),但是我看不到解决方案:
1。显示我从StatusBarNotification.getNotification().getSmallIcon()
到StatusBarNotification.getNotification().getLargeIcon()
都不到的图标
2。可能使用它们将它们无线(蓝牙)发送到另一个设备/屏幕
对于那个似乎是largeIcon = (Drawable)sbm.getNotification().getLargeIcon().loadDrawable(this);
,但它不起作用。
尝试了许多解决方案,但没有一个起作用
for (StatusBarNotification sbm : listData){
if (sbm.getPackageName().equals("com.google.android.apps.maps")) {
Drawable smallIcon;
Drawable largeIcon;
smallIcon = (Drawable)
sbm.getNotification().getSmallIcon().loadDrawable(this);
largeIcon = (Drawable)
sbm.getNotification().getLargeIcon().loadDrawable(this);
googleSmallIcon.setImageDrawable(smallIcon);
} else {