Hypertext


Next Page



Home Page

Hypertext is text with references (hyperlinks) to other text which the reader can immediately access, or where text can be revealed progressively at multiple levels of detail. The hypertext pages are interconnected by hyperlinks, typically activated by a mouse click, keypress sequence or by touching the screen. The following show the corresponding files for the above two interfaces:
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.”