Android Studio, as an Android development tool that's coming to market soon, is becoming more and more popular, and here I'll show you how to create an app project in Android studio and learn about other operations and programming methods for Android studio in future experience.
Tools/Materials
Method/Step
Open the software and select File-New project in the menu to open the Create Wizard.
Configure the project, determine the name and store the project storage path;
Application Name: Project name
Company domain: Corporate domains
Package Name:app Packaging Name
Project Location: Storage path
It is best to remove the examples from the name.
Next, set the minimum version of the compatible Android, which, depending on the situation, is set to Android version 2.3.
If you are unsure of the differences between versions, you can click on "Help me Choose" and the features of each Android version are described in the open window.
After determining the minimum compatible version, select the project activity type, there are many ready-made templates to use, for beginners to choose the default blank activity.
Next, set the activity name, the name of the interface layout, and the interface title, and finally click Finish to complete the project creation.
Steps to read
After the creation, in the project name-"app-" src-"main-" res-"layout, double-click the XML file is to open the Active Interface Design window.
END
Precautions
- Be careful to choose the minimum compatible version of Android as appropriate
Android Studio Tutorial: [1] Creating an app project