Zum Inhalt springen

Android Training/Starting Another Activity: Unterschied zwischen den Versionen

Diese Seite wurde zum Übersetzen freigegeben
Keine Bearbeitungszusammenfassung
(Diese Seite wurde zum Übersetzen freigegeben)
Zeile 1: Zeile 1:
<languages />
<languages />
<translate>
<translate>
<!--T:1-->
After completing the [[Spezial:MyLanguage/Android Training/Building a Simple User Interface|previous lesson]], you have an app that shows an activity (a single screen) with a text field and a button. In this lesson, you’ll add some code to<code>MyActivity</code> that starts a new activity when the user clicks the Send button.
After completing the [[Spezial:MyLanguage/Android Training/Building a Simple User Interface|previous lesson]], you have an app that shows an activity (a single screen) with a text field and a button. In this lesson, you’ll add some code to<code>MyActivity</code> that starts a new activity when the user clicks the Send button.


== Respond to the Send Button ==
== Respond to the Send Button == <!--T:2-->
# In Android Studio, from the <code>res/layout</code> directory, edit the<code>content_my.xml</code> file.
# In Android Studio, from the <code>res/layout</code> directory, edit the<code>content_my.xml</code> file.
# Add the <code>[http://developer.android.com/reference/android/view/View.html#attr_android:onClick android:onClick]</code> attribute to the <code>[http://developer.android.com/reference/android/widget/Button.html <Button>]</code> element.</translate>
# Add the <code>[http://developer.android.com/reference/android/view/View.html#attr_android:onClick android:onClick]</code> attribute to the <code>[http://developer.android.com/reference/android/widget/Button.html <Button>]</code> element.</translate>
Zeile 13: Zeile 14:
     android:onClick="sendMessage" />
     android:onClick="sendMessage" />
</syntaxhighlight>
</syntaxhighlight>
#: <translate>The <code>android:onClick</code> attribute’s value, <code>"sendMessage"</code>, is the name of a method in your activity that the system calls when the user clicks the button.
#: <translate><!--T:3-->
The <code>android:onClick</code> attribute’s value, <code>"sendMessage"</code>, is the name of a method in your activity that the system calls when the user clicks the button.
# In the <code>java/com.mycompany.myfirstapp</code> directory, open the <code>MyActivity.java</code> file.
# In the <code>java/com.mycompany.myfirstapp</code> directory, open the <code>MyActivity.java</code> file.
# Within the <code>MyActivity</code> class, add the <code>sendMessage()</code> method stub shown below.</translate>
# Within the <code>MyActivity</code> class, add the <code>sendMessage()</code> method stub shown below.</translate>
Zeile 22: Zeile 24:
}
}
</syntaxhighlight>
</syntaxhighlight>
#: <translate>In order for the system to match this method to the method name given to <code>android:onClick</code>, the signature must be exactly as shown. Specifically, the method must:
#: <translate><!--T:4-->
In order for the system to match this method to the method name given to <code>android:onClick</code>, the signature must be exactly as shown. Specifically, the method must:
#* Be public
#* Be public
#* Have a void return value
#* Have a void return value
Zeile 28: Zeile 31:
Next, you’ll fill in this method to read the contents of the text field and deliver that text to another activity.
Next, you’ll fill in this method to read the contents of the text field and deliver that text to another activity.


== Build an Intent ==
== Build an Intent == <!--T:5-->
# In <code>MyActivity.java</code>, inside the <code>sendMessage()</code> method, create an <code>Intent</code> to start an activity called<code>DisplayMessageActivity</code> with the following code:</translate>
# In <code>MyActivity.java</code>, inside the <code>sendMessage()</code> method, create an <code>Intent</code> to start an activity called<code>DisplayMessageActivity</code> with the following code:</translate>
#: ''java/com.mycompany.myfirstapp/MyActivity.java''<syntaxhighlight lang="java">
#: ''java/com.mycompany.myfirstapp/MyActivity.java''<syntaxhighlight lang="java">
Zeile 35: Zeile 38:
}
}
</syntaxhighlight>
</syntaxhighlight>
#: <translate>'''Note:''' The reference to <code>DisplayMessageActivity</code> will raise an error if you’re using an IDE such as Android Studio because the class doesn’t exist yet. Ignore the error for now; you’ll create the class soon.  The constructor used here takes two parameters:
#: <translate><!--T:6-->
'''Note:''' The reference to <code>DisplayMessageActivity</code> will raise an error if you’re using an IDE such as Android Studio because the class doesn’t exist yet. Ignore the error for now; you’ll create the class soon.  The constructor used here takes two parameters:
#* A <code>Context</code> as its first parameter (<code>this</code> is used because the <code>Activity</code> class is a subclass of <code>Context</code>)
#* A <code>Context</code> as its first parameter (<code>this</code> is used because the <code>Activity</code> class is a subclass of <code>Context</code>)
#* The <code>Class</code> of the app component to which the system should deliver the <code>Intent</code> (in this case, the activity that should be started) Android Studio indicates that you must import the <code>Intent</code> class.
#* The <code>Class</code> of the app component to which the system should deliver the <code>Intent</code> (in this case, the activity that should be started) Android Studio indicates that you must import the <code>Intent</code> class.
Zeile 42: Zeile 46:
import android.content.Intent;
import android.content.Intent;
</syntaxhighlight>
</syntaxhighlight>
#: <translate>'''Tip:''' In Android Studio, press Alt + Enter (option + return on Mac) to import missing classes.
#: <translate><!--T:7-->
'''Tip:''' In Android Studio, press Alt + Enter (option + return on Mac) to import missing classes.
# Inside the <code>sendMessage()</code> method, use <code>findViewById()</code> to get the <code>EditText</code> element.</translate>
# Inside the <code>sendMessage()</code> method, use <code>findViewById()</code> to get the <code>EditText</code> element.</translate>
#: ''java/com.mycompany.myfirstapp/MyActivity.java''<syntaxhighlight lang="java">
#: ''java/com.mycompany.myfirstapp/MyActivity.java''<syntaxhighlight lang="java">
Zeile 50: Zeile 55:
}
}
</syntaxhighlight>
</syntaxhighlight>
# <translate>At the top of the file, import the <code>EditText</code> class. In Android Studio, press Alt + Enter (option + return on Mac) to import missing classes.
# <translate><!--T:8-->
At the top of the file, import the <code>EditText</code> class. In Android Studio, press Alt + Enter (option + return on Mac) to import missing classes.
# Assign the text to a local <code>message</code> variable, and use the <code>putExtra()</code> method to add its text value to the intent.</translate>
# Assign the text to a local <code>message</code> variable, and use the <code>putExtra()</code> method to add its text value to the intent.</translate>
#: ''java/com.mycompany.myfirstapp/MyActivity.java''<syntaxhighlight lang="java">
#: ''java/com.mycompany.myfirstapp/MyActivity.java''<syntaxhighlight lang="java">
Zeile 60: Zeile 66:
}
}
</syntaxhighlight>
</syntaxhighlight>
#: <translate>An <code>Intent</code> can carry data types as key-value pairs called ''extras''. The <code>putExtra()</code> method takes the key name in the first parameter and the value in the second parameter.
#: <translate><!--T:9-->
An <code>Intent</code> can carry data types as key-value pairs called ''extras''. The <code>putExtra()</code> method takes the key name in the first parameter and the value in the second parameter.
# At the top of the <code>MyActivity</code> class, add the <code>EXTRA_MESSAGE</code> definition as follows:</translate>
# At the top of the <code>MyActivity</code> class, add the <code>EXTRA_MESSAGE</code> definition as follows:</translate>
#: ''java/com.mycompany.myfirstapp/MyActivity.java''<syntaxhighlight lang="java">
#: ''java/com.mycompany.myfirstapp/MyActivity.java''<syntaxhighlight lang="java">
Zeile 68: Zeile 75:
}
}
</syntaxhighlight>
</syntaxhighlight>
#: <translate>For the next activity to query the extra data, you should define the key for your intent's extra using a public constant. It's generally a good practice to define keys for intent extras using your app's package name as a prefix. This ensures the keys are unique, in case your app interacts with other apps.
#: <translate><!--T:10-->
For the next activity to query the extra data, you should define the key for your intent's extra using a public constant. It's generally a good practice to define keys for intent extras using your app's package name as a prefix. This ensures the keys are unique, in case your app interacts with other apps.
# In the <code>sendMessage()</code> method, to finish the intent, call the <code>startActivity()</code> method, passing it the<code>Intent</code> object created in step 1.
# In the <code>sendMessage()</code> method, to finish the intent, call the <code>startActivity()</code> method, passing it the<code>Intent</code> object created in step 1.


<!--T:11-->
With this new code, the complete <code>sendMessage()</code> method that's invoked by the Send button now looks like this:</translate>
With this new code, the complete <code>sendMessage()</code> method that's invoked by the Send button now looks like this:</translate>
''java/com.mycompany.myfirstapp/MyActivity.java''<syntaxhighlight lang="java">
''java/com.mycompany.myfirstapp/MyActivity.java''<syntaxhighlight lang="java">
Zeile 82: Zeile 91:
}
}
</syntaxhighlight>
</syntaxhighlight>
<translate>The system receives this call and starts an instance of the <code>Activity</code> specified by the <code>Intent</code>. Now you need to create the <code>DisplayMessageActivity</code> class in order for this to work.
<translate><!--T:12-->
The system receives this call and starts an instance of the <code>Activity</code> specified by the <code>Intent</code>. Now you need to create the <code>DisplayMessageActivity</code> class in order for this to work.


== Create the Second Activity ==
== Create the Second Activity == <!--T:13-->
All subclasses of <code>[http://developer.android.com/reference/android/app/Activity.html Activity]</code> must implement the <code>[http://developer.android.com/reference/android/app/Activity.html#onCreate(android.os.Bundle) onCreate()]</code> method. This method is where the activity receives the intent with the message, then renders the message. Also, the <code>onCreate()</code> method must define the activity layout with the <code>setContentView()</code> method. This is where the activity performs the initial setup of the activity components.
All subclasses of <code>[http://developer.android.com/reference/android/app/Activity.html Activity]</code> must implement the <code>[http://developer.android.com/reference/android/app/Activity.html#onCreate(android.os.Bundle) onCreate()]</code> method. This method is where the activity receives the intent with the message, then renders the message. Also, the <code>onCreate()</code> method must define the activity layout with the <code>setContentView()</code> method. This is where the activity performs the initial setup of the activity components.


=== Create a new activity using Android Studio ===
=== Create a new activity using Android Studio === <!--T:14-->
Android Studio includes a stub for the <code>onCreate()</code> method when you create a new activity. The ''New Android Activity'' window appears.
Android Studio includes a stub for the <code>onCreate()</code> method when you create a new activity. The ''New Android Activity'' window appears.
# In Android Studio, in the <code>java</code> directory, select the package, '''com.mycompany.myfirstapp''', right-click, and select '''New > Activity > Blank Activity'''.
# In Android Studio, in the <code>java</code> directory, select the package, '''com.mycompany.myfirstapp''', right-click, and select '''New > Activity > Blank Activity'''.
Zeile 99: Zeile 109:
If you're developing with Android Studio, you can run the app now, but not much happens. Clicking the Send button starts the second activity, but it uses a default "Hello world" layout provided by the template. You'll soon update the activity to instead display a custom text view.
If you're developing with Android Studio, you can run the app now, but not much happens. Clicking the Send button starts the second activity, but it uses a default "Hello world" layout provided by the template. You'll soon update the activity to instead display a custom text view.


=== Create the activity without Android Studio ===
=== Create the activity without Android Studio === <!--T:15-->
If you're using a different IDE or the command line tools, do the following:
If you're using a different IDE or the command line tools, do the following:
# Create a new file named <code>DisplayMessageActivity.java</code> in the project's <code>src/</code> directory, next to the original<code>MyActivity.java</code> file.
# Create a new file named <code>DisplayMessageActivity.java</code> in the project's <code>src/</code> directory, next to the original<code>MyActivity.java</code> file.
Zeile 146: Zeile 156:
}
}
</syntaxhighlight>
</syntaxhighlight>
#: <translate>'''Note:''' If you are using an IDE other than Android Studio, your project does not contain the<code>activity_display_message</code> layout that's requested by <code>[http://developer.android.com/reference/android/app/Activity.html#setContentView(android.view.View) setContentView()]</code>. That's OK because you will update this method later and won't be using that layout.
#: <translate><!--T:16-->
'''Note:''' If you are using an IDE other than Android Studio, your project does not contain the<code>activity_display_message</code> layout that's requested by <code>[http://developer.android.com/reference/android/app/Activity.html#setContentView(android.view.View) setContentView()]</code>. That's OK because you will update this method later and won't be using that layout.
# To your <code>strings.xml</code> file, add the new activity's title as follows:</translate>
# To your <code>strings.xml</code> file, add the new activity's title as follows:</translate>
#: <syntaxhighlight lang="xml">
#: <syntaxhighlight lang="xml">
Zeile 154: Zeile 165:
</resources>
</resources>
</syntaxhighlight>
</syntaxhighlight>
# <translate>In your manifest file, <code>AndroidManifest.xml</code>, within the <code>Application</code> element, add the <code>[http://developer.android.com/guide/topics/manifest/activity-element.html <activity>]</code> element for your <code>DisplayMessageActivity</code> class, as follows:</translate>
# <translate><!--T:17-->
In your manifest file, <code>AndroidManifest.xml</code>, within the <code>Application</code> element, add the <code>[http://developer.android.com/guide/topics/manifest/activity-element.html <activity>]</code> element for your <code>DisplayMessageActivity</code> class, as follows:</translate>
#: <syntaxhighlight lang="xml">
#: <syntaxhighlight lang="xml">
<application ... >
<application ... >
Zeile 168: Zeile 180:
</application>
</application>
</syntaxhighlight>
</syntaxhighlight>
<translate>The <code>[http://developer.android.com/guide/topics/manifest/activity-element.html#parent android:parentActivityName]</code> attribute declares the name of this activity's parent activity within the app's logical hierarchy. The system uses this value to implement default navigation behaviors, such as Up navigationon Android 4.1 (API level 16) and higher. You can provide the same navigation behaviors for older versions of Android by using the [http://developer.android.com/tools/support-library/index.html Support Library] and adding the <code>[http://developer.android.com/guide/topics/manifest/meta-data-element.html <meta-data>]</code> element as shown here.
<translate><!--T:18-->
The <code>[http://developer.android.com/guide/topics/manifest/activity-element.html#parent android:parentActivityName]</code> attribute declares the name of this activity's parent activity within the app's logical hierarchy. The system uses this value to implement default navigation behaviors, such as Up navigationon Android 4.1 (API level 16) and higher. You can provide the same navigation behaviors for older versions of Android by using the [http://developer.android.com/tools/support-library/index.html Support Library] and adding the <code>[http://developer.android.com/guide/topics/manifest/meta-data-element.html <meta-data>]</code> element as shown here.


<!--T:19-->
'''Note:''' Your Android SDK should already include the latest Android Support Library, which you installed during the [http://developer.android.com/sdk/installing/adding-packages.html Adding SDK Packages] step. When using the templates in Android Studio, the Support Library is automatically added to your app project (you can see the library's JAR file listed under ''Android Dependencies''). If you're not using Android Studio, you need to manually add the library to your project—follow the guide for [http://developer.android.com/tools/support-library/setup.html setting up the Support Library] then return here.
'''Note:''' Your Android SDK should already include the latest Android Support Library, which you installed during the [http://developer.android.com/sdk/installing/adding-packages.html Adding SDK Packages] step. When using the templates in Android Studio, the Support Library is automatically added to your app project (you can see the library's JAR file listed under ''Android Dependencies''). If you're not using Android Studio, you need to manually add the library to your project—follow the guide for [http://developer.android.com/tools/support-library/setup.html setting up the Support Library] then return here.


<!--T:20-->
If you're using a different IDE than Android Studio, don't worry that the app won't yet compile. You'll soon update the activity to display a custom text view.
If you're using a different IDE than Android Studio, don't worry that the app won't yet compile. You'll soon update the activity to display a custom text view.


== Receive the Intent ==
== Receive the Intent == <!--T:21-->


<!--T:22-->
Every <code>Activity</code> is invoked by an <code>[[Intent]]</code>, regardless of how the user navigated there. You can get the <code>Intent</code>that started your activity by calling <code>[http://developer.android.com/reference/android/app/Activity.html#getIntent() getIntent()]</code> and retrieve the data contained within the intent.
Every <code>Activity</code> is invoked by an <code>[[Intent]]</code>, regardless of how the user navigated there. You can get the <code>Intent</code>that started your activity by calling <code>[http://developer.android.com/reference/android/app/Activity.html#getIntent() getIntent()]</code> and retrieve the data contained within the intent.
# In the <code>java/com.mycompany.myfirstapp</code> directory, edit the <code>DisplayMessageActivity.java</code> file.
# In the <code>java/com.mycompany.myfirstapp</code> directory, edit the <code>DisplayMessageActivity.java</code> file.
Zeile 182: Zeile 198:
Intent intent = getIntent();
Intent intent = getIntent();
</syntaxhighlight>
</syntaxhighlight>
# <translate>At the top of the file, import the <code>[http://developer.android.com/reference/android/content/Intent.html Intent]</code> class.  In Android Studio, press Alt + Enter (option + return on Mac) to import missing classes.
# <translate><!--T:23-->
At the top of the file, import the <code>[http://developer.android.com/reference/android/content/Intent.html Intent]</code> class.  In Android Studio, press Alt + Enter (option + return on Mac) to import missing classes.
# Extract the message delivered by <code>MyActivity</code> with the <code>[http://developer.android.com/reference/android/content/Intent.html#getStringExtra(java.lang.String) getStringExtra()]</code> method.</translate>
# Extract the message delivered by <code>MyActivity</code> with the <code>[http://developer.android.com/reference/android/content/Intent.html#getStringExtra(java.lang.String) getStringExtra()]</code> method.</translate>
#: <syntaxhighlight lang="java">
#: <syntaxhighlight lang="java">
Zeile 188: Zeile 205:
</syntaxhighlight>
</syntaxhighlight>
<translate>
<translate>
== Display the Message ==
== Display the Message == <!--T:24-->
# In the res/layout directory, edit the <code>content_display_message.xml</code> file.
# In the res/layout directory, edit the <code>content_display_message.xml</code> file.
# Add an <code>android:id</code> attribute to the <code>RelativeLayout</code>. You need this attribute to reference the object from your app code.</translate>
# Add an <code>android:id</code> attribute to the <code>RelativeLayout</code>. You need this attribute to reference the object from your app code.</translate>
Zeile 197: Zeile 214:
</RelativeLayout>
</RelativeLayout>
</syntaxhighlight>
</syntaxhighlight>
# <translate>Switch back to editing <code>DisplayMessageActivity.java</code>.
# <translate><!--T:25-->
Switch back to editing <code>DisplayMessageActivity.java</code>.
# In the <code>onCreate()</code> method, create a <code>TextView</code> object.</translate>
# In the <code>onCreate()</code> method, create a <code>TextView</code> object.</translate>
#: <syntaxhighlight lang="java">
#: <syntaxhighlight lang="java">
TextView textView = new TextView(this);
TextView textView = new TextView(this);
</syntaxhighlight>
</syntaxhighlight>
# <translate>Set the text size and message with <code>[http://developer.android.com/reference/android/widget/TextView.html#setText(char&#x5B;&#x5D;,&#x20;int,&#x20;int) setText()]</code>.</translate>
# <translate><!--T:26-->
Set the text size and message with <code>[http://developer.android.com/reference/android/widget/TextView.html#setText(char&#x5B;&#x5D;,&#x20;int,&#x20;int) setText()]</code>.</translate>
#: <syntaxhighlight lang="java">
#: <syntaxhighlight lang="java">
textView.setTextSize(40);
textView.setTextSize(40);
textView.setText(message);
textView.setText(message);
</syntaxhighlight>
</syntaxhighlight>
# <translate>Add the <code>TextView</code> to the <code>[http://developer.android.com/reference/android/widget/RelativeLayout.html RelativeLayout]</code> identified by <code>R.id.content</code>.</translate>
# <translate><!--T:27-->
Add the <code>TextView</code> to the <code>[http://developer.android.com/reference/android/widget/RelativeLayout.html RelativeLayout]</code> identified by <code>R.id.content</code>.</translate>
#: <syntaxhighlight lang="java">
#: <syntaxhighlight lang="java">
RelativeLayout layout = (RelativeLayout) findViewById(R.id.content);
RelativeLayout layout = (RelativeLayout) findViewById(R.id.content);
layout.addView(textView);
layout.addView(textView);
</syntaxhighlight>
</syntaxhighlight>
# <translate>At the top of the file, import the <code>[http://developer.android.com/reference/android/widget/TextView.html TextView]</code> class. In Android Studio, press Alt + Enter (option + return on Mac) to import missing classes.</translate>
# <translate><!--T:28-->
At the top of the file, import the <code>[http://developer.android.com/reference/android/widget/TextView.html TextView]</code> class. In Android Studio, press Alt + Enter (option + return on Mac) to import missing classes.</translate>


<translate>The complete <code>onCreate()</code> method for <code>DisplayMessageActivity</code> now looks like this:</translate>
<translate><!--T:29-->
The complete <code>onCreate()</code> method for <code>DisplayMessageActivity</code> now looks like this:</translate>
<syntaxhighlight lang="java">
<syntaxhighlight lang="java">
@Override
@Override
Zeile 244: Zeile 266:
</syntaxhighlight>
</syntaxhighlight>


<translate>You can now run the app. When it opens, type a message in the text field, and click '''Send'''. The second activity replaces the first one on the screen, showing the message you entered in the first activity.
<translate><!--T:30-->
You can now run the app. When it opens, type a message in the text field, and click '''Send'''. The second activity replaces the first one on the screen, showing the message you entered in the first activity.


<!--T:31-->
That's it, you've built your first Android app!</translate>
That's it, you've built your first Android app!</translate>


{{TNT|Android_Training/Attribution}}
{{TNT|Android_Training/Attribution}}
11.008

Bearbeitungen

Cookies helfen uns bei der Bereitstellung von Android Wiki. Durch die Nutzung von Android Wiki erklärst du dich damit einverstanden, dass wir Cookies speichern.