I have an AppWidget that has a layout that displays images and overlays text (with a TextView) over it. I have multiple image sizes that the layout take account of, making the TextView width change as well (as it is displayed on top of the image).
I would like to do some text truncation based on how much width I have, but I cannot find a way to figure out the width of a view (being the ImageView, or some other TextView that displays some overlay on it). Both of those classes end up being RemoteViews, and there is no getWidth or getMeasuredWidth() that can be used findViewById does not exists for an AppWidget, so I can't get the appropriate View.
Is there a way for me to get the width of TextView or ImageView during the onUpdate() call please?
(I am aware of Android truncation for TextView, but I actually want to truncate in a different way).