0
votes
0answers
115 views

Android - RemoteViews.setImageViewBitmap not working

I'm writing an widget which will load the image from URL and then display to an ImageView public class ChopInkService extends Service { ... ... public Bitmap getBitmapFromURL(String src) ...
0
votes
2answers
184 views

Rotated images in remoteviews

I'm making a battery widget, and to avoid having 20 separate PNG files for the different levels I've got one PNG which I rotate to 20 positions. On Android 3.x+ this is easy, as the ImageView element ...
0
votes
0answers
79 views

RemoteViews is not saving correctly into bitmap

I want to draw the Notification contentview, which is a RemoteViews, into a bitmap. I'm using this code: private Bitmap getImageOfRemoteViews(RemoteViews rv) { try { View view = ...
0
votes
0answers
136 views

RemoteViews is not saving correctly to bitmap with getDrawingCache

I want to draw the Notification contentview, which is a RemoteViews, into a bitmap. I'm using this code: private Bitmap getImageOfRemoteViews(RemoteViews rv) { try { View view = ...