Prevent crash

pull/214/head
M66B 7 months ago
parent e425c8ddce
commit b9513b0552

@ -196,4 +196,24 @@ public class FixedRecyclerView extends RecyclerView {
*/
}
}
@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);
}
}

Loading…
Cancel
Save