Android Switch Button Tutorial

ByUnknown

Android Switch Button Tutorial

Android Switch Button: SwitchCompat is a version of the switch widget which on devices back to API v7. It does not make any attempt to use the platform provided widget on those devices which it is available normally. A switch is a two...Read More

Android ToggleButton Tutorial

ByUnknown

Android ToggleButton Tutorial

Android ToggleButton: Android toggle button can be used to display checked/unchecked (On/Off) state on the button. It is beneficial if user have to change the setting between two states. It can be used On/Off sound, Wifi, Bluetooth, etc. Since, Android 4.0 there is...Read More

AutoCompletetextView Tutorial- android

ByUnknown

AutoCompletetextView Tutorial- android

A AutoCompleteTextView is an editable text view that shows completion suggestions automatically while the user is typing. The list of suggestions is displayed in a drop down menu from which the user can choose an item to replace the content of the edit...Read More

MultiAutoCompleteTextView Tutorial- android

ByUnknown

MultiAutoCompleteTextView Tutorial- android

A MultiAutoCompleteTextView is an editable text view, extending AutoCompleteTextView, that can show completion suggestions for the substring of the text where the user is typing instead of necessarily for the entire thing. Let's demonstrate a MultiAutoCompleteTextView: In your layout file you can add it as:...Read More