Android   发布时间:2022-04-28  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了android – 使用辅助功能服务获取通知图标大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
有没有办法获得系统通知的图标?
我可以通过辅助功能服务获得通知包裹.我甚至可以从中获取图标的ID,但我被困在那里.我不知道如何使用id来获取实际的位图,@R_363_9447@显示它,因为它不是来自我的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导致

解决方法

所以我设法通过在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;
        }

大佬总结

以上是大佬教程为你收集整理的android – 使用辅助功能服务获取通知图标全部内容,希望文章能够帮你解决android – 使用辅助功能服务获取通知图标所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。