Android Training/Creating an Android Project: Unterschied zwischen den Versionen

Aus Android Wiki
(vom original geguttenbergt)
 
(Diese Seite wurde zum Übersetzen freigegeben)
 
(19 dazwischenliegende Versionen von 2 Benutzern werden nicht angezeigt)
Zeile 1: Zeile 1:
An Android project contains all the files that comprise the source code for your Android app. The Android SDK tools make it easy to start a new Android project with a set of default project directories and files.
<languages />
<translate>
<!--T:1-->
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 Eclipse (with the ADT plugin) or using the SDK tools from a command line.
<!--T:2-->
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 Eclipse, you should have installed the [http://developer.android.com/tools/sdk/eclipse-adt.html ADT plugin] as well. If you have not installed these, see [http://developer.android.com/sdk/installing/index.html Installing the Android SDK] and return here when you've completed the installation.
<!--T:3-->
'''Note:''' You should already have the Android SDK installed, and if you're using Android Studio, you should also have [http://developer.android.com/sdk/installing/studio.html Android Studio] installed. If you don't have these, follow the guide to [http://developer.android.com/sdk/installing/index.html Installing the Android SDK] before you start this lesson.


== Create a Project with Eclipse ==
== Create a Project with Android Studio == <!--T:4-->
[[Datei:Adt-firstapp-setup.png|thumb|The new project wizard in Eclipse.]]
</translate>
# In Eclipse, select '''File > New > Project'''. The resulting dialog should have a folder labeled Android. (If you don’t see the Android folder, then you have not installed the ADT plugin – see [http://developer.android.com/tools/sdk/eclipse-adt.html#installing Installing the ADT Plugin]).
[[Datei:Adt-firstapp-setup.png|thumb|<translate><!--T:5-->
# Open the Android folder, select Android Project and click '''Next'''.
'''Figure 1.''' Configuring a new project in Android Studio.</translate>]]
# Enter a project name (such as "MyFirstApp") and click '''Next'''.
<translate>
# Select a build target. This is the platform version against which you will compile your app.<br />We recommend that you select the latest version possible. You can still build your app to support older versions, but setting the build target to the latest version allows you to easily optimize your app for a great user experience on the latest Android-powered devices.<br />If you don't see any built targets listed, you need to install some using the Android SDK Manager tool. See [http://developer.android.com/sdk/installing/index.html#AddingComponents step 4 in the installing guide].<br />Click '''Next'''.
<!--T:6-->
# Specify other app details, such as the:
# In Android Studio, create a new project:
#; Application Name : The app name that appears to the user. Enter "My First App".
#* If you don't have a project opened, in the '''Welcome''' screen, click '''New Project'''.
#; Package Name : The package namespace for your app (following the same rules as packages in the Java programming language). Your package name must be unique across all packages installed on the Android system. For this reason, it's important that you use a standard domain-style package name that’s appropriate to your company or publisher entity. For your first app, you can use something like "com.example.myapp." However, you cannot publish your app using the "com.example" namespace.
#* If you have a project opened, from the '''File''' menu, select '''New Project'''.
#; Create Activity : This is the class name for the primary user activity in your app (an activity represents a single screen in your app). Enter "MyFirstActivity".
# 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.
#; Minimum SDK : Select ''4 (Android 1.6)''.<br />Because this version is lower than the build target selected for the app, a warning appears, but that's alright. You simply need to be sure that you don't use any APIs that require an [http://developer.android.com/guide/topics/manifest/uses-sdk-element.html#ApiLevels API level] greater than the minimum SDK version without first using some code to verify the device's system version (you'll see this in some other classes).
#*'''Application Name''' is the app name that appears to users. For this project, use "My First App."
: Click '''Finish'''.
#*'''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.
#Under '''Select the form factors your app will run on''', check the box for '''Phone and Tablet'''.
#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|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 [[Spezial:MyLanguage/Android Training/Supporting Different Platform Versions|Supporting Different Platform Versions]]).
#Leave all of the other options (TV, Wear, and Glass) unchecked and click '''Next.'''
#Under '''Add an activity to <''template''>''', select '''Blank Activity''' and click '''Next'''.
#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''.
#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:
</translate>
<code>app/src/main/res/layout/activity_my.xml</code>
* <translate><!--T:7-->
This is the XML layout file for the activity you added when you created the project with Android Studio. Following the New Project workflow, Android Studio presents this file with both a text view and a preview of the screen UI. The file includes some default settings and a <code>TextView</code> element that displays the message, "Hello world!"</translate>
<code>app/src/main/java/com.mycompany.myfirstapp/MyActivity.java</code>
* <translate><!--T:8-->
A tab for this file appears in Android Studio when the New Project workflow finishes. When you select the file you see the class definition for the activity you created. When you build and run the app, the <code>Activity</code> class starts the activity and loads the layout file that says "Hello World!"</translate>
<code>app/src/main/AndroidManifest.xml</code>
* <translate><!--T:9-->
The [http://developer.android.com/guide/topics/manifest/manifest-intro.html manifest file] describes the fundamental characteristics of the app and defines each of its components. You'll revisit this file as you follow these lessons and add more components to your app.</translate>
<code>app/build.gradle</code>
* <translate><!--T:10-->
Android Studio uses Gradle to compile and build your app. There is a <code>build.gradle</code> file for each module of your project, as well as a <code>build.gradle</code> file for the entire project. Usually, you're only interested in the<code>build.gradle</code> file for the module, in this case the <code>app</code> or application module. This is where your app's build dependencies are set, including the <code>defaultConfig</code> settings:</translate>
** <translate><!--T:19-->
<code>compiledSdkVersion</code> is the platform version against which you will compile your app. By default, this is set to the latest version of Android available in your SDK. (It should be Android 4.1 or greater; if you don't have such a version available, you must install one using the [[SDK Manager]].) You can still build your app to support older versions, but setting this to the latest version allows you to enable new features and optimize your app for a great user experience on the latest devices.</translate>
** <translate><!--T:20-->
<code>applicationId</code> is the fully qualified package name for your application that you specified during the New Project workflow.</translate>
** <translate><!--T:21-->
<code>minSdkVersion</code> is the Minimum SDK version you specified during the New Project workflow. This is the earliest version of the Android SDK that your app supports.</translate>
** <translate><!--T:22-->
<code>targetSdkVersion</code> indicates the highest version of Android with which you have tested your application. As new versions of Android become available, you should test your app on the new version and update this value to match the latest API level and thereby take advantage of new platform features. For more information, read [[Spezial:MyLanguage/Android Training/Supporting Different Platform Versions|Supporting Different Platform Versions]].</translate>
* <translate><!--T:23-->
See [http://developer.android.com/sdk/installing/studio-build.html Building Your Project with Gradle] for more information about Gradle.
Note also the <code>/res</code> subdirectories that contain the [http://developer.android.com/guide/topics/resources/overview.html resources] for your application:
</translate>
<code>drawable''<density>''/</code>
* <translate><!--T:11-->
Directories for drawable objects (such as bitmaps) that are designed for various densities, such as medium-density (mdpi) and high-density (hdpi) screens. Other drawable directories contain assets designed for other screen densities. Here you'll find the ic_launcher.png that appears when you run the default app.</translate>
<code>layout/</code>
* <translate><!--T:12-->
Directory for files that define your app's user interface like activity_my.xml, discussed above, which describes a basic layout for the MyActivity class.</translate>
<code>menu/</code>
* <translate><!--T:13-->
Directory for files that define your app's menu items.</translate>
<code>values/</code>
* <translate><!--T:14-->
Directory for other XML files that contain a collection of resources, such as string and color definitions. The strings.xml file defines the "Hello world!" string that displays when you run the default app.
To run the app, continue to the [[Spezial:MyLanguage/Android Training/Running Your Application|next lesson]].


Your Android project is now set up with some default files and you’re ready to begin building the app. Continue to the [[Android Training/ Deine App starten|next lesson]].
== Create a Project with Command Line Tools == <!--T:15-->
If you're not using the Android Studio IDE, you can instead create your project using the SDK tools from a command line:
# Change directories into the Android SDK’s <code>sdk/</code> path.
# Execute: </translate>
#: <code>tools/android list targets</code>
#: <translate><!--T:16-->
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 [http://developer.android.com/sdk/installing/adding-packages.html Adding SDK Packages].
# Execute:</translate>
#: <code>android create project --target <target-id> --name MyFirstApp \ --path <path-to-workspace>/MyFirstApp --activity MyActivity \ --package com.example.myfirstapp</code>
#: <translate><!--T:17-->
Replace <code><target-id></code> with an ID from the list of targets (from the previous step) and replace <code><path-to-workspace></code> with the location in which you want to save your Android projects.
'''Tip:''' Add the <code>platform-tools/</code> as well as the <code>tools/</code> directory to your <code>PATH</code> environment variable.


== Create a Project with Command Line Tools ==
<!--T:18-->
If you're not using the Eclipse IDE with the ADT plugin, you can instead create your project using the SDK tools in a command line:
Your Android project is now a basic "Hello World" app that contains some default files. To run the app, continue to the [[Spezial:MyLanguage/Android Training/Running Your Application|next lesson]].
</translate>


# Change directories into the Android SDK’s <code>tools/</code> path.
{{TNT|Android Training/Attribution}}
# Execute:<pre>android list targets</pre>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.<br />If you don't see any targets listed, you need to install some using the Android SDK Manager tool. See [http://developer.android.com/sdk/installing/index.html#AddingComponents step 4 in the installing guide].
[[Kategorie:Android Training]]
# Execute:<pre>android create project --target <target-id> --name MyFirstApp --path <path-to-workspace>/MyFirstApp --activity MyFirstActivity --package com.example.myapp</pre>Replace <code><target-id></code> with an id from the list of targets (from the previous step) and replace <code><path-to-workspace></code> with the location in which you want to save your Android projects.
 
Your Android project is now set up with several default configurations and you’re ready to begin building the app. Continue to the [[Android Training/ Deine App starten|next lesson]].
 
'''Tip:''' Add the <code>platform-tools/</code> as well as the <code>tools/</code> directory to your <code>PATH</code> environment variable.
 
{{Android Training/ Vorlage:Attribution}}

Aktuelle Version vom 30. Dezember 2015, 20:49 Uhr

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[Bearbeiten | Quelltext bearbeiten]

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

  • This is the XML layout file for the activity you added when you created the project with Android Studio. Following the New Project workflow, Android Studio presents this file with both a text view and a preview of the screen UI. The file includes some default settings and a TextView element that displays the message, "Hello world!"

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

  • A tab for this file appears in Android Studio when the New Project workflow finishes. When you select the file you see the class definition for the activity you created. When you build and run the app, the Activity class starts the activity and loads the layout file that says "Hello World!"

app/src/main/AndroidManifest.xml

  • The manifest file describes the fundamental characteristics of the app and defines each of its components. You'll revisit this file as you follow these lessons and add more components to your app.

app/build.gradle

  • Android Studio uses Gradle to compile and build your app. There is a build.gradle file for each module of your project, as well as a build.gradle file for the entire project. Usually, you're only interested in thebuild.gradle file for the module, in this case the app or application module. This is where your app's build dependencies are set, including the defaultConfig settings:
    • compiledSdkVersion is the platform version against which you will compile your app. By default, this is set to the latest version of Android available in your SDK. (It should be Android 4.1 or greater; if you don't have such a version available, you must install one using the SDK Manager.) You can still build your app to support older versions, but setting this to the latest version allows you to enable new features and optimize your app for a great user experience on the latest devices.
    • applicationId is the fully qualified package name for your application that you specified during the New Project workflow.
    • minSdkVersion is the Minimum SDK version you specified during the New Project workflow. This is the earliest version of the Android SDK that your app supports.
    • targetSdkVersion indicates the highest version of Android with which you have tested your application. As new versions of Android become available, you should test your app on the new version and update this value to match the latest API level and thereby take advantage of new platform features. For more information, read Supporting Different Platform Versions.
  • See Building Your Project with Gradle for more information about Gradle.

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

  • Directories for drawable objects (such as bitmaps) that are designed for various densities, such as medium-density (mdpi) and high-density (hdpi) screens. Other drawable directories contain assets designed for other screen densities. Here you'll find the ic_launcher.png that appears when you run the default app.

layout/

  • Directory for files that define your app's user interface like activity_my.xml, discussed above, which describes a basic layout for the MyActivity class.

menu/

  • Directory for files that define your app's menu items.

values/

  • Directory for other XML files that contain a collection of resources, such as string and color definitions. The strings.xml file defines the "Hello world!" string that displays when you run the default app.

To run the app, continue to the next lesson.

Create a Project with Command Line Tools[Bearbeiten | Quelltext bearbeiten]

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.