Currently, the only widget you can disable via setEnabled(false) is the plain old button. However, being enabled disabled is a property that makes sense on most widgets. There should be a WidgetDisableable interface, which requires implementation of two isEnabled() and setEnabled(boolean) methods.
Currently, the only widget you can disable via
setEnabled(false)
is the plain old button. However, being enabled disabled is a property that makes sense on most widgets. There should be aWidgetDisableable
interface, which requires implementation of twoisEnabled()
andsetEnabled(boolean)
methods.