A couple of weeks ago I think I read something about makeing a Button or any other View group a bit faded or less visible to show that it is not in use, but can be used if the user does something. Now I can not find it anywhere, and I really want to use it.
Does anyone know what it is and if it is useable in android 2.1?
you can use below method , if Button is not enable and you want to show user that it is not in use.
mButton.setEnabled(false); // if it is not enable and you want to show user that it is not in use.
and
mButton.setEnabled(true); // to make it enabled/ in use