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
Hi Lorensius, I found out the new version still has transparent background issue.
I clicked the item for 2 ways, one is click item quickly, and other is hold about 1s then release.
In previous version, the 1st way to click item, the background transparent, but the 2nd way(hold way) is ok.
But In current version, it reversed, the 1st way is ok, and 2nd way is wrong.
The issue only occur on Android 2.2 and above. Both of two ways on Android 2.1 - updated are OK.
Thanks.
The text was updated successfully, but these errors were encountered:
Hi cfanboy, thanx for reporting the issue, i've found the solution for it. That was caused by the missing popupwindow background. I'll update the repo soon.
just change the dismiss method of the popupwindow class
public void dismiss() {
final Handler handler = new Handler();
handler.postDelayed(new Runnable() { @OverRide
public void run() {
//Do something after 300ms
mWindow.dismiss();
}
}, 400);
}
Hi Lorensius, I found out the new version still has transparent background issue.
I clicked the item for 2 ways, one is click item quickly, and other is hold about 1s then release.
In previous version, the 1st way to click item, the background transparent, but the 2nd way(hold way) is ok.
But In current version, it reversed, the 1st way is ok, and 2nd way is wrong.
The issue only occur on Android 2.2 and above. Both of two ways on Android 2.1 - updated are OK.
Thanks.
The text was updated successfully, but these errors were encountered: