widget内ImageView组件设置bitmap问题

在widget里面,Imageview设置bitmap时,通常可以使用

RemoteViews.setImageViewBitmap(R.id.imageview, bitmap)

更新ImageView,使用此方法容易引起以下问题:

AppWidgetHostView: Error inflating RemoteViews : android.widget.RemoteViews$ActionException: android.widget.RemoteViews$ActionException: view: androidx.appcompat.widget.AppCompatImageView can't use method with RemoteViews: setImageBitmap(class android.graphics.Bitmap)

从以上错误日志分析大致意思就是,AppCompatImageView不能在RemoteViews里面使用setImageBitmap这个方法
可是why?remoteViews明明提供了setImageViewBitmap,现在又说不能用

分析一 :这句错误日志“can’t use method with RemoteViews”哪里来的?

widget使用setImageViewBitmap方法设置bug分析-LMLPHP
method实质就是ImageView的setImageBitmap方法,klass.getName()理论上应该返回的是ImageView,因为我们在layout里面的组件就是ImageView;但是从日志上来说却是AppCompatImageView,这个很关键;还有这句:

method.isAnnotationPresent(RemotableViewMethod.class)

意思是method这个方法上如果有注解,且注解上包含RemotableViewMethod这个类就返回true,不包含就返回false;
我们看看ImageView的setImageBitmap:
widget使用setImageViewBitmap方法设置bug分析-LMLPHP
确实有,说明ImageView是没有问题的;那从日志侧面反应一个问题,kclass.getName()确实返回不是ImageView而是一个AppCompatImageView

问题原因

明明RemoteViews提供的布局layout里面是一个ImageView,但是在setImageBitmap时却是一个AppCompatImageView;查资料发现大致原因是AppCompatImageView是ImageView的兼容类型,做了很多优化,所以有时候系统会将ImageView替换为AppCompatImageView,而这个AppCompatImageView的setImageBitmap方法没有关于RemotableViewMethod的注解,所以就会报错;

解决

把关于AppCompat的库移除掉,查看build.gradle里面引入了appcomapt库

 implementation 'androidx.appcompat:appcompat:1.3.1'

把这行依赖库删除掉,从新编译问题就得到解决了;

06-22 23:55