Fixed views

This commit is contained in:
M66B
2024-01-18 15:10:41 +01:00
parent a18652b655
commit f3c41d2e47
8 changed files with 307 additions and 36 deletions

View File

@@ -47,4 +47,24 @@ public class FixedNestedScrollView extends NestedScrollView {
Log.w(ex);
}
}
@Override
public boolean post(Runnable action) {
return super.post(new RunnableEx("post") {
@Override
protected void delegate() {
action.run();
}
});
}
@Override
public boolean postDelayed(Runnable action, long delayMillis) {
return super.postDelayed(new RunnableEx("postDelayed") {
@Override
protected void delegate() {
action.run();
}
}, delayMillis);
}
}