feature MB-43103 add setters in Switcher

This commit is contained in:
Sergey Vlasenko 2024-03-27 15:19:27 +03:00
parent 87b7863b46
commit 405ff7459f
1 changed files with 8 additions and 0 deletions

View File

@ -28,6 +28,14 @@ public class Switcher extends FrameLayout {
@Nullable
private Animation outAnimation;
public void setOutAnimation(@Nullable Animation outAnimation) {
this.outAnimation = outAnimation;
}
public void setInAnimation(@Nullable Animation inAnimation) {
this.inAnimation = inAnimation;
}
public Switcher(@NonNull final Context context) {
this(context, null);
}