Version für alte Androidversionen der Visiereinstellung für Recurvebogen.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

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. <ImageView
  10. android:id="@+id/ug_image"
  11. android:layout_width="wrap_content"
  12. android:layout_height="wrap_content"
  13. android:layout_gravity="center_horizontal"
  14. android:layout_marginBottom="5dp"
  15. android:adjustViewBounds="true"
  16. android:background="@color/gray_dark"
  17. android:padding="1dp"
  18. android:scaleType="centerInside" />
  19. <ScrollView
  20. android:id="@+id/ug_ScrollView"
  21. android:layout_width="match_parent"
  22. android:layout_height="wrap_content"
  23. android:layout_weight="1"
  24. android:addStatesFromChildren="true" >
  25. <LinearLayout
  26. android:id="@+id/linearLayout1"
  27. android:layout_width="match_parent"
  28. android:layout_height="wrap_content"
  29. android:orientation="vertical" >
  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>