You've already forked android_translation_layer
mirror of
https://gitlab.com/android_translation_layer/android_translation_layer.git
synced 2025-10-27 11:48:10 -07:00
Add some more methods needed by NewPipe. Mostly stubs
This commit is contained in:
@@ -1497,6 +1497,10 @@ public class View extends Object {
|
||||
post(action);
|
||||
}
|
||||
|
||||
public void postOnAnimationDelayed(Runnable action, long delayMillis) {
|
||||
postDelayed(action, delayMillis);
|
||||
}
|
||||
|
||||
public void setHorizontalScrollBarEnabled(boolean enabled) {}
|
||||
|
||||
public void postInvalidateOnAnimation() {
|
||||
@@ -1613,4 +1617,10 @@ public class View extends Object {
|
||||
public int getMeasuredWidthAndState() {
|
||||
return measuredWidth;
|
||||
}
|
||||
|
||||
public void forceLayout() {
|
||||
requestLayout();
|
||||
}
|
||||
|
||||
public void removeOnAttachStateChangeListener(OnAttachStateChangeListener listener) {}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user