1 Creating the Hello World Project
1.1 Creating a project
Launch Android Studio and click on the File->new->new Project menu () to pop up the Create NewProject interface
Diagram, create a new project
Diagram, new project Options
Here we follow the prompts to combine their actual situation and need to enter the content to be closed
Application Name: The name of the project, note that the beginning of this must be capitalized in the beginning of the English alphabet
, for example, we have a project called Mango.
Company domain: Corporate domain name, such as our company name Yeehot.com.
Package Name: the project name.
Project location: The path where the project is saved.
After entering the relevant project options, click on the Next button to enter an interface.
The option to choose Phone and tablet by default means that the app will work for mobile and tablet development.
Minimum sdk:android System Minimum version operation requirements. For example, choose API 15, which means that the Android 4.03 system (contains) more than the mobile phone to run this program.
TV:: Television program
Wear: Watch Equipment
Glass: Eyewear Equipment
Enter and click Next to enter an activity selection screen,
This Android option will be set to the first page when the program is launched. We can select the appropriate function requirements page as needed, but for beginners, I suggest you choose blank activity, an empty active page.
This page needs to be configured after the blank activity is selected.
Activity Name: page name
Layout Name: Layouts names
Title: Caption
Menu Resource Name: Layout Name
After entering the above content, we click Finish. Now Android Stuidio has created a project for you.
1. Android Studio create Android Project