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
some fixes to make NewPipe not crash when layouting
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
package android.view;
|
||||
|
||||
import android.animation.Animator;
|
||||
import android.animation.TimeInterpolator;
|
||||
|
||||
public class ViewPropertyAnimator {
|
||||
@@ -9,4 +10,22 @@ public class ViewPropertyAnimator {
|
||||
public ViewPropertyAnimator setInterpolator(TimeInterpolator interpolator) {
|
||||
return this;
|
||||
}
|
||||
|
||||
public ViewPropertyAnimator setListener(Animator.AnimatorListener listener) {
|
||||
return this;
|
||||
}
|
||||
|
||||
public ViewPropertyAnimator alpha(float alpha) {
|
||||
return this;
|
||||
}
|
||||
|
||||
public ViewPropertyAnimator setDuration(long duration) {
|
||||
return this;
|
||||
}
|
||||
|
||||
public ViewPropertyAnimator setStartDelay(long duration) {
|
||||
return this;
|
||||
}
|
||||
|
||||
public void start() {}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user