You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 8, 2022. It is now read-only.
I found a way to manually setup the position like this
Do this after .show();
int x, y;
final Rect rect = new Rect();
mPalette.getGlobalVisibleRect(rect);
x = rect.left - mToolTipViewCreate.getWidth() - 10;
y = rect.top;
mToolTipViewCreate.setTranslationX(x);
mToolTipViewCreate.setTranslationY(y);
Hello, I'm trying to display tooltip but position doesn't match, here is my code:
in kotlin side:
Here's an image with the problem result:
The text was updated successfully, but these errors were encountered: