fix: floaty not working

This commit is contained in:
hyb1996
2018-10-12 23:30:50 +08:00
parent e64afaa88f
commit 4dc37bc4ff
12 changed files with 194 additions and 22 deletions

View File

@@ -72,4 +72,8 @@ public class GlobalAppContext {
public static void post(Runnable r) {
sHandler.post(r);
}
public static void postDelayed(Runnable r, long m) {
sHandler.postDelayed(r, m);
}
}