3

システム通知のアイコンを取得する方法はありますか? アクセシビリティ サービスで通知小包を受け取ることができます。そこからアイコンのIDを取得することもできますが、そこで立ち往生しています。ID を使用して実際のビットマップを取得し、それを表示できるようにする方法がわかりません。これは、apk からのものではないためです。

これまでの私のコードは次のとおりです。

@Override
public void onAccessibilityEvent(AccessibilityEvent event) {
        Log.d("onAccessibilityEvent");
        if (event.getEventType() == AccessibilityEvent.TYPE_NOTIFICATION_STATE_CHANGED) {
            if (event.getParcelableData() instanceof Notification) {
                Notification notification = (Notification) event.getParcelableData();

                Log.d("ticker: " + notification.tickerText);
                Log.d("icon: " + notification.icon);
                Log.d("largeIcon: " + notification.largeIcon);

            }

            Log.d("notification: " + event.getText());
        }
    }

この ID を使用しようとすると、

android.content.res.Resources$NotFoundException: リソース ID #0x7f0200ad

4

2 に答える 2

4

だから私はRemoteViewsで最初のImageViewを検索することでこれを達成することができました

extractImage(notification.contentView); 
...
      private void extractImage(RemoteViews views) {
            LinearLayout ll = new LinearLayout(getApplicationContext());
            View view = views.apply(getApplicationContext(), ll);
            drawable = searchForBitmap(view);
            Log.d("Drawable: " + drawable);
        }

        private Drawable searchForBitmap(View view) {
            if (view instanceof ImageView) {
                return ((ImageView) view).getDrawable();
            }

            if (view instanceof ViewGroup) {
                ViewGroup viewGroup = (ViewGroup) view;
                for (int i = 0; i < viewGroup.getChildCount(); i++) {
                    Drawable result = searchForBitmap(viewGroup.getChildAt(i));
                    if (result != null) {
                        return result;
                    }
                }
            }
            return null;
        }
于 2013-04-27T23:55:32.820 に答える
3

これが機能するかどうかを確認します。

String mPackageName = event.getPackageName();
Context remotePackageContext = context.createPackageContext(mPackageName, 0);
Drawable icon = remotePackageContext.getResources().getDrawable(mIcon);

于 2013-08-08T20:51:02.790 に答える