-
public interface AndroidSwitchManagerInterface<T extends View>
-
-
Method Summary
Modifier and Type Method Description abstract void
setDisabled(T view, boolean value)
abstract void
setEnabled(T view, boolean value)
abstract void
setThumbColor(T view, @Nullable() Integer value)
abstract void
setTrackColorForFalse(T view, @Nullable() Integer value)
abstract void
setTrackColorForTrue(T view, @Nullable() Integer value)
abstract void
setValue(T view, boolean value)
abstract void
setOn(T view, boolean value)
abstract void
setThumbTintColor(T view, @Nullable() Integer value)
abstract void
setTrackTintColor(T view, @Nullable() Integer value)
abstract void
setNativeValue(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)
-
-
-
-