想要从drawable.icon

时间:2019-03-25 23:33:49

标签: android icons drawable

我正在开发一个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 {

0 个答案:

没有答案