Android Tutorials

This category contains all the tutorials related to Android app development.

Spinner in Android

In this tutorial, we will learn about Spinner in Android. If you ever worked in Java AWT or Swing then you might be familiar with ComboBox. Spinner is same as those ComboBoxes. Spinner allows a user to choose from multiple choices and the user can select only one option at a single time. For example, you […]

Spinner in Android Read More »

RadioButton in Android

In this tutorial, we will learn about RadioButton in Android. Radio buttons are kind of buttons which has only two states checked or unchecked the same as CheckBox expects with little differences. RadioButton in Android is generally used with another widget which in RadioGroup. Suppose a RadioGroup contain two Radio Buttons it means we can select only one RadioButton

RadioButton in Android Read More »

CheckBox in Android

In this tutorial, we will learn about CheckBox in Android. The CheckBox is a kind of button which only have two states checked or unchecked. The CheckBox can be used in my different ways, for example, to show different options in the app that user can select multiple from those options, In this kind of situation

CheckBox in Android Read More »

ImageView in Android

In this tutorial, we will learn how to use ImageView in Android. ImageView is really helpful widget and we use this widget to add Images in our Android App. Here we will learn how to use drawable images in ImageView. We will also learn how we can add images in ImageView using the XML layout file. So without wasting

ImageView in Android Read More »

Toast in Android

In this tutorial, we would learn about Toast in Android. We use Toast in Android to show small piece of information for small time. For example, we want to show a message like “Signup Successfully” or “User Name Already Taken” after a user will press the signup button. In that kind of situations toast is a

Toast in Android Read More »

Scroll to Top