So I'm trying to make an app widget and display a profile picture there which should look like a circular ImageView
. normally I'd just use a circular ImageView
library, but for app widgets you can't extend views (so only vanilla ImageView
) and it has to work with RemoteViews
So I'm playing around with the idea of using a Drawable
to overlay/underlay to achieve this effect. I tried gusridd's solution from here Display FB profile pic in circular image view in Application, but the background which my profile picture sits on is also an image, and this just makes it a white square with a circlular image inside :(
edit: please read bolded portion before answering :X