gotopage.xml 685 B

1234567891011121314151617
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="fill_parent"
  4. android:layout_height="fill_parent"
  5. android:orientation="horizontal">
  6. <EditText
  7. android:layout_width="wrap_content"
  8. android:layout_height="wrap_content"
  9. android:minEms="4"
  10. android:numeric="integer"
  11. android:id="@+id/pageNumberTextEdit"/>
  12. <Button android:text="Go to Page!"
  13. android:layout_width="wrap_content"
  14. android:layout_height="wrap_content"
  15. android:id="@+id/goToButton"/>
  16. </LinearLayout>