Version für alte Androidversionen der Visiereinstellung für Recurvebogen.
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

rbs_about_dialog.xml 2.5KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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:id="@+id/layout_About"
  6. android:layout_width="fill_parent"
  7. android:layout_height="fill_parent"
  8. android:background="@drawable/bg_about"
  9. android:orientation="vertical"
  10. android:padding="10dp" >
  11. <LinearLayout
  12. android:id="@+id/layout_aboutVersion"
  13. android:layout_width="wrap_content"
  14. android:layout_height="wrap_content"
  15. android:orientation="horizontal" >
  16. <ImageView
  17. android:id="@+id/about_imageAppIcon"
  18. android:layout_width="wrap_content"
  19. android:layout_height="wrap_content"
  20. android:layout_marginRight="20dip" />
  21. <LinearLayout
  22. android:id="@+id/layout_aboutVersionText"
  23. android:layout_width="wrap_content"
  24. android:layout_height="wrap_content"
  25. android:orientation="vertical" >
  26. <ch.spherIC.recurvebowsight.components.FontTextView
  27. android:id="@+id/about_TextDescription"
  28. android:layout_width="wrap_content"
  29. android:layout_height="wrap_content"
  30. android:text="iii"
  31. android:textColor="#FF000000"
  32. app:font="@string/TitilliumWeb_Regular" />
  33. <ch.spherIC.recurvebowsight.components.FontTextView
  34. android:id="@+id/about_TextVersion"
  35. android:layout_width="wrap_content"
  36. android:layout_height="wrap_content"
  37. android:text="iii"
  38. android:textColor="#FF000000"
  39. app:font="@string/TitilliumWeb_Bold" />
  40. </LinearLayout>
  41. </LinearLayout>
  42. <ch.spherIC.recurvebowsight.components.FontTextView
  43. android:id="@+id/about_TextAutor"
  44. android:layout_width="wrap_content"
  45. android:layout_height="wrap_content"
  46. android:paddingBottom="20dip"
  47. android:paddingTop="20dip"
  48. android:text="@+id/TextView01"
  49. android:textColor="@color/black"
  50. app:font="@string/TitilliumWeb_Regular" />
  51. <Button
  52. android:id="@+id/btn_AboutClose"
  53. android:layout_width="wrap_content"
  54. android:layout_height="wrap_content"
  55. android:layout_gravity="center_horizontal"
  56. android:background="@drawable/btn_fs"
  57. android:text="@string/caption_Close"
  58. android:textColor="@color/white" >
  59. </Button>
  60. </LinearLayout>