有没有什么办法让系统通知的图标? 我可以配备无障碍服务的通知包裹。 我甚至可以从它的图标的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());
}
}
在尝试使用这个号码,结果
android.content.res.Resources $ NotFoundException:资源ID#0x7f0200ad