Android Wiki

<span class="mw-page-title-main">Android Training/Creating an Android Project</span>

Seite Diskussion Versionen
Sprachen:

An Android project contains all the files that comprise the source code for your Android app.

This lesson shows how to create a new project either using Android Studio or using the SDK tools from a command line.

Note: You should already have the Android SDK installed, and if you're using Android Studio, you should also have Android Studio installed. If you don't have these, follow the guide to Installing the Android SDK before you start this lesson.

Create a Project with Android Studio

Figure 1. Configuring a new project in Android Studio.
  1. In Android Studio, create a new project:
    • If you don't have a project opened, in the Welcome screen, click New Project.
    • If you have a project opened, from the File menu, select New Project.
  2. Under Configure your new project, fill in the fields as shown in figure 1 and click Next. It will probably be easier to follow these lessons if you use the same values as shown.
    • Application Name is the app name that appears to users. For this project, use "My First App."
    • Company domain provides a qualifier that will be appended to the package name; Android Studio will remember this qualifier for each new project you create.
    • Package name is the fully qualified name for the project (following the same rules as those for naming packages in the Java programming language). Your package name must be unique across all packages installed on the Android system. You can Edit this value independently from the application name or the company domain.
  3. Under Select the form factors your app will run on, check the box for Phone and Tablet.
  4. For Minimum SDK, select API 8: Android 2.2 (Froyo).
    • The Minimum Required SDK is the earliest version of Android that your app supports, indicated using the API level. To support as many devices as possible, you should set this to the lowest version available that allows your app to provide its core feature set. If any feature of your app is possible only on newer versions of Android and it's not critical to the app's core feature set, you can enable the feature only when running on the versions that support it (as discussed in Supporting Different Platform Versions).
  5. Leave all of the other options (TV, Wear, and Glass) unchecked and click Next.
  6. Under Add an activity to <template>, select Blank Activity and click Next.
  7. Under Choose options for your new file, change the Activity Name to MyActivity. The Layout Name changes to activity_my, and the Title to MyActivity. The Menu Resource Name is menu_my.
  8. Click the Finish button to create the project.

Your Android project is now a basic "Hello World" app that contains some default files. Take a moment to review the most important of these: app/src/main/res/layout/activity_my.xml

app/src/main/java/com.mycompany.myfirstapp/MyActivity.java

app/src/main/AndroidManifest.xml

app/build.gradle

Note also the /res subdirectories that contain the resources for your application: drawable<density>/

layout/

menu/

values/

To run the app, continue to the next lesson.

Create a Project with Command Line Tools

If you're not using the Android Studio IDE, you can instead create your project using the SDK tools from a command line:

  1. Change directories into the Android SDK’s sdk/ path.
  2. Execute:
    tools/android list targets
    This prints a list of the available Android platforms that you’ve downloaded for your SDK. Find the platform against which you want to compile your app. Make a note of the target ID. We recommend that you select the highest version possible. You can still build your app to support older versions, but setting the build target to the latest version allows you to optimize your app for the latest devices. If you don't see any targets listed, you need to install some using the Android SDK Manager tool. See Adding SDK Packages.
  3. Execute:
    android create project --target <target-id> --name MyFirstApp \ --path <path-to-workspace>/MyFirstApp --activity MyActivity \ --package com.example.myfirstapp
    Replace <target-id> with an ID from the list of targets (from the previous step) and replace <path-to-workspace> with the location in which you want to save your Android projects.

Tip: Add the platform-tools/ as well as the tools/ directory to your PATH environment variable.

Your Android project is now a basic "Hello World" app that contains some default files. To run the app, continue to the next lesson.

Bearbeiten