|
Next Page ⇒ ⇐ Home Page |
|
AndroidManifest.xml,activity_main.xml and activity_next.xml, and
MainActivity.java and NextActivity.java.
| MyApplication/app/src/main/AndroidManifest.xml |
<?xml version="1.0" encoding="utf-8"?>
<manifest
xmlns:android = "http://schemas.android.com/apk/res/android"
package = "com.example.wenchen.myapplication">
<application
android:allowBackup = "true"
android:icon = "@mipmap/ic_launcher"
android:label = "@string/app_name"
android:theme = "@style/AppTheme">
<activity
android:name = ".MainActivity"
android:label = "@string/app_name">
<intent-filter>
<action android:name = "android.intent.action.MAIN" />
<category android:name = "android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name = ".NextActivity"
android:label = "Next Page" />
</application>
</manifest>
|
|
A turtle is crossing the road when he’s mugged by two snails. When the police show up, they ask him what happened. The shaken turtle replies, “I don’t know. It all happened so fast.” |