This commit is contained in:
M66B
2024-01-19 20:14:58 +01:00
parent 95f5b22778
commit 15709d128f
8 changed files with 46 additions and 144 deletions

View File

@@ -52,24 +52,4 @@ public class FixedLinearLayout extends LinearLayout {
return false;
}
}
@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);
}
}