In this tutorial following is shown: Basic concepts of Spinner Control of Android Basic concepts of ImageView Control of Android …
In this tutorial basic concepts of ToggleButton control of Android is shown. Code: activity_main.xml <RelativeLayout xmlns:android=”http://schemas.android.com/apk/res/android” xmlns:tools=”http://schemas.android.com/tools” android:layout_width=”match_parent” android:layout_height=”match_parent” android:paddingBottom=”@dimen/activity_vertical_margin” …
In this tutorial basic concepts of RadioButton control of Android is shown. Code: radio.xml <?xml version=”1.0″ encoding=”utf-8″?> <RadioGroup xmlns:android=”http://schemas.android.com/apk/res/android” android:layout_width=”match_parent” …
In this tutorial basic concepts of CheckBox control of Android is shown. Code: activity_main.xml <RelativeLayout xmlns:android=”http://schemas.android.com/apk/res/android” xmlns:tools=”http://schemas.android.com/tools” android:layout_width=”match_parent” android:layout_height=”match_parent” android:paddingBottom=”@dimen/activity_vertical_margin” …
In this tutorial basic concepts of AutoCompleteTextView and MultiAutoCompleteTextView control of Android is shown. Code: activity_main.xml <RelativeLayout xmlns:android=”http://schemas.android.com/apk/res/android” xmlns:tools=”http://schemas.android.com/tools” android:layout_width=”match_parent” …
In this tutorial basic concepts of EditText control of Android is shown Code: activity_main.xml <RelativeLayout xmlns:android=”http://schemas.android.com/apk/res/android” xmlns:tools=”http://schemas.android.com/tools” android:layout_width=”match_parent” android:layout_height=”match_parent” android:paddingBottom=”@dimen/activity_vertical_margin” …
In this tutorial how to design the style/theme in Android is shown. Code: activity_main.xml <RelativeLayout xmlns:android=”http://schemas.android.com/apk/res/android” xmlns:tools=”http://schemas.android.com/tools” android:layout_width=”match_parent” android:layout_height=”match_parent” android:paddingBottom=”@dimen/activity_vertical_margin” …
In this tutorial how to perform simple arithmetic operations in Android is shown. Code: activity_main.xml <RelativeLayout xmlns:android=”http://schemas.android.com/apk/res/android” xmlns:tools=”http://schemas.android.com/tools” android:layout_width=”match_parent” android:layout_height=”match_parent” …
In this tutorial how to transfer data from one page to another and how to move from one page to …
In this tutorial how to create, start and stop Service in Android is shown. Android Service is a component that …