feature MB-43103 add setters in Switcher #9
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue