Articles in this series
Layout defines the structure of the User Interface in our application. Layout in Android is built using a combination of Views and ViewGroup. View -...
Introduction A View is a simple building block of a user interface. It is a small rectangular box that can be TextView, EditText, or even a button. It...
Toast Messages in Android A Toast is a simple popup message in Android. We use the maketext() method to instantiate a Toast, and show() method to...
Introduction In this article, we will learn how to create a Toolbar - Action Bar in our Android Application. The ToolBar provides content & actions...
ListView Displays a vertically scrollable collection of views, where each view is positioned immediately below the previous view in the list. ListView...
A style is a collection of attributes that specifies the appearance for a single View. A style can specify attributes such as font color, font size,...