我正在尝试将类型为“BitmapDrawable”的图像分配给窗口小部件。 该图像来自Internet并将其转换为“BitmapDrawable”。
Bitmap.createBitmap resizedBitmap = Bitmap (bmWidget1, 0, 0, width, height, matrix, true);
bmdWidget1 = new BitmapDrawable (resizedBitmap);
问题在于我不知道如何以编程方式将该图像放入窗口小部件中
我正在使用
Buttons = new RemoteViews RemoteViews (context.getPackageName (), R.layout.mywidget);
buttons.setImageViewBitmap (R.id.imageWidget1, WidgetConfig.bmdWidget1);
但我总是建议修改不起作用(更改为位图,更改为setImageViewResource)
如果有人可以用代码示例进行ayudarem,那将非常感激。
非常感谢