-
public interface AndroidSwitchManagerInterface<T extends View>
-
-
Method Summary
Modifier and Type Method Description abstract voidsetDisabled(T view, boolean value)abstract voidsetEnabled(T view, boolean value)abstract voidsetThumbColor(T view, @Nullable() Integer value)abstract voidsetTrackColorForFalse(T view, @Nullable() Integer value)abstract voidsetTrackColorForTrue(T view, @Nullable() Integer value)abstract voidsetValue(T view, boolean value)abstract voidsetOn(T view, boolean value)abstract voidsetThumbTintColor(T view, @Nullable() Integer value)abstract voidsetTrackTintColor(T view, @Nullable() Integer value)abstract voidsetNativeValue(T view, boolean value)-
-
Method Detail
-
setDisabled
abstract void setDisabled(T view, boolean value)
-
setEnabled
abstract void setEnabled(T view, boolean value)
-
setThumbColor
abstract void setThumbColor(T view, @Nullable() Integer value)
-
setTrackColorForFalse
abstract void setTrackColorForFalse(T view, @Nullable() Integer value)
-
setTrackColorForTrue
abstract void setTrackColorForTrue(T view, @Nullable() Integer value)
-
setThumbTintColor
abstract void setThumbTintColor(T view, @Nullable() Integer value)
-
setTrackTintColor
abstract void setTrackTintColor(T view, @Nullable() Integer value)
-
setNativeValue
abstract void setNativeValue(T view, boolean value)
-
-
-
-