Data binding
Data Binding support was added to Android last year. In this example lets see how to implement Data Binding in Android application. In simple terms, the View is tied to…
Network Checking
Determining and Monitoring the Connectivity Status Some of the most common uses for repeating alarms and background services is to schedule regular updates of application data from Internet resources, cache…
Layout Inflater
Instantiates a layout XML file into its corresponding View objects. It is never used directly. Instead, use getLayoutInflater() or getSystemService(Class) to retrieve a standard LayoutInflater instance that is already hooked…
Custom views (List/Grid/Spinner/AutoComplete)
Here will custom listview example same you can apply remaining two elements Activity_main.xml Custom.xml MainActivity.java CustomAdapter.java
Autocomplete Textview
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…