Version für alte Androidversionen der Visiereinstellung für Recurvebogen.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

rbs_userguide_dialog.xml 1.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout
  3. xmlns:android="http://schemas.android.com/apk/res/android"
  4. android:background="@drawable/bg_about"
  5. android:padding="10dp"
  6. android:layout_height="fill_parent"
  7. android:layout_width="fill_parent"
  8. android:orientation="vertical">
  9. <ScrollView
  10. android:id="@+id/ug_ScrollView"
  11. android:layout_width="match_parent"
  12. android:layout_height="wrap_content"
  13. android:layout_weight="1"
  14. android:addStatesFromChildren="true" >
  15. <LinearLayout
  16. android:id="@+id/linearLayout1"
  17. android:layout_width="match_parent"
  18. android:layout_height="wrap_content"
  19. android:orientation="vertical" >
  20. <ImageView
  21. android:id="@+id/ug_image"
  22. android:layout_width="wrap_content"
  23. android:layout_height="wrap_content"
  24. android:layout_gravity="center_horizontal"
  25. android:layout_marginBottom="5dp"
  26. android:adjustViewBounds="true"
  27. android:background="@color/gray_dark"
  28. android:padding="1dp"
  29. android:scaleType="centerInside" />
  30. <TextView
  31. android:id="@+id/ug_txt_HowTo"
  32. android:layout_width="wrap_content"
  33. android:layout_height="wrap_content"
  34. android:lineSpacingExtra="1dp"
  35. android:text="Text hier..."
  36. android:textColor="@color/black"
  37. android:textSize="12dp" >
  38. </TextView>
  39. </LinearLayout>
  40. </ScrollView>
  41. <Button
  42. android:id="@+id/btn_ugClose"
  43. android:layout_width="wrap_content"
  44. android:layout_height="wrap_content"
  45. android:layout_gravity="center_horizontal"
  46. android:layout_marginTop="20dp"
  47. android:background="@drawable/btn_fs"
  48. android:text="@string/caption_Close"
  49. android:textColor="@color/white" >
  50. </Button>
  51. </LinearLayout>