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 2.1KB

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