tronious
tronious
I added the following to the ViewTooltip class. ``` public class ViewTooltip { private static ArrayList allToolTips = new ArrayList(); public static void hideAllVisibleToolTips() { for (TooltipView tip: allToolTips) {...
I didnt have any plans to push the change. Someone is welcome to if they'd like. What I wrote above is really everything that's needed to make it work. Whenever...
if this is not working for you try setting the scale AFTER the view renders: Example: dashboard_image = (PhotoView) TheView.findViewById(R.id.dashboard_image); ViewTreeObserver vto = dashboard_image.getViewTreeObserver(); vto.addOnGlobalLayoutListener(new ViewTreeObserver.OnGlobalLayoutListener() { @Override public void...