How to create and run Android App
How to create and run Android App
Said Muhammad
GSSC Peshawar
Steps to Create App in Android Studio
3. Choose Empty
Activity for our
first project and
press [Next].
Continue…
• Step 4: Now we’ll move
towards the most
important part of this
application.
– Here, give a name for
your application.
– Choose the language of
implementation, we’ll use
Java.
– And click on the [Finish]
button.
Continue…
• Step 5: Now you’ll find the following on
your screen.
Continue…
• Here, you can find the following things using the given
steps about your application:
1. Manifest files :
describe the components of the application and its
characteristics.
App -> menifests-> AndroidManifests.xml
2. XML files :
are used to describe the layout and to design the User
Interface of the Application.
In our project, it has a TextView which has text Hello
World.
app-> res->layout -> main_activity.xml
Continue…
• In XML, we can find the layout in 2 ways:
– Design
– Text
• Design part shows an easy drag and drop
feature for application layout and User
Interface designing.
• Text contains the coding part of the XML
where we can code and design the User
Interface
Continue…
Continue…
Continue….