Main.axml 927 B

12345678910111213141516171819202122232425262728
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:orientation="vertical"
  4. android:layout_width="fill_parent"
  5. android:layout_height="fill_parent">
  6. <ImageView
  7. android:id="@+id/MyImageView"
  8. android:layout_width="fill_parent"
  9. android:layout_height="0dp"
  10. android:layout_weight="1"
  11. android:adjustViewBounds="true"
  12. android:scaleType="fitCenter" />
  13. <ScrollView
  14. android:layout_width="fill_parent"
  15. android:layout_height="0dp"
  16. android:layout_weight="1">
  17. <TextView
  18. android:id="@+id/MyTextView"
  19. android:layout_width="fill_parent"
  20. android:layout_height="fill_parent" />
  21. </ScrollView>
  22. <Button
  23. android:id="@+id/MyButton"
  24. android:layout_width="fill_parent"
  25. android:layout_height="wrap_content"
  26. android:text="Next Image"
  27. android:onClick="OnMyButtonClick" />
  28. </LinearLayout>