What is Android?
Android is an operating system based on the Linux kernel with a user interface based on direct manipulation.
Android is an open source software platform created by Google and the open handset...
Creating an Android Project
This lesson shows you how to create a new Android project with
Android Studio and describes some
of the files in the project. As Android devices become increasingly more common,...
Linear Layout
Linear Layout organizes elements along a single line. You specify whether that line is vertical or horizontal using android:orientation. Here is a sample Layout XML using Linear Layout. Change Orientation...
onCreate():
Called when the activity is first created.
This is where you should do all of your normal static set up create views, bind data to lists, an d so on.
Always followed by onStart()
onRestart():
Called...