Version für alte Androidversionen der Visiereinstellung für Recurvebogen.
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

rbs_userguide_dialog.xml 1.6KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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="match_parent"
  23. android:layout_height="wrap_content"
  24. android:layout_marginBottom="20dp"
  25. android:scaleType="fitCenter" />
  26. <TextView
  27. android:id="@+id/ug_txt_HowTo"
  28. android:layout_width="wrap_content"
  29. android:layout_height="wrap_content"
  30. android:lineSpacingExtra="1dp"
  31. android:text="Text hier..."
  32. android:textColor="@color/black"
  33. android:textSize="12dp" >
  34. </TextView>
  35. </LinearLayout>
  36. </ScrollView>
  37. <Button
  38. android:id="@+id/btn_ugClose"
  39. android:layout_width="wrap_content"
  40. android:layout_height="wrap_content"
  41. android:layout_gravity="center_horizontal"
  42. android:layout_marginTop="20dp"
  43. android:background="@drawable/btn_fs"
  44. android:text="@string/caption_Close"
  45. android:textColor="@color/white" >
  46. </Button>
  47. </LinearLayout>