Download Introducing a second activity into an Android app

Survey
yes no Was this document useful for you?
   Thank you for your participation!

* Your assessment is very important for improving the workof artificial intelligence, which forms the content of this project

Document related concepts
no text concepts found
Transcript
Android Moving to a second
Activity
1
Starting with an app with one activity having a TextView,
a Button and an EditText
2
So far: set up button’s onclick listener and method
3
Right click on package, choose New/Other
4
Choose Android folder/Android Activity/Next
5
Choose Blank Activity/Next, then name the activity and
Next (or possibly finish)
6
Preview what’s happening: 1) second activity added to
manifest
7
Preview what’s happening: 2) string constant for name
of second activity added
8
Preview what’s happening: 3) addition to the menu
folder
9
Preview what’s happening: 4) layout xml added for new
activity
10
Preview what’s happening: 5) java code for
second activity added
11
http://developer.android.com/guide/topics/manifest/manifest-intro.html
12
Results of addition
13
The AndroidManifest in xml view
14
onClick code to move to second activity
SecondActivity.class
as opposed to
SecondActivity.java
15