mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-01 14:46:31 +02:00
Fixed views
This commit is contained in:
@@ -72,4 +72,24 @@ public class FixedFrameLayout extends FrameLayout {
|
||||
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);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user