activity_about.xml 3.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2. xmlns:tools="http://schemas.android.com/tools"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:orientation="vertical"
  6. android:paddingBottom="@dimen/activity_vertical_margin"
  7. android:paddingLeft="@dimen/activity_horizontal_margin"
  8. android:paddingRight="@dimen/activity_horizontal_margin"
  9. android:paddingTop="@dimen/activity_vertical_margin" >
  10. <LinearLayout
  11. android:layout_width="match_parent"
  12. android:layout_height="wrap_content"
  13. android:orientation="vertical" >
  14. <LinearLayout
  15. android:layout_width="match_parent"
  16. android:layout_height="wrap_content"
  17. android:orientation="horizontal" >
  18. <TextView
  19. android:id="@+id/text_version"
  20. android:layout_width="wrap_content"
  21. android:layout_height="wrap_content"
  22. android:textAppearance="?android:attr/textAppearanceMedium"
  23. android:text="@string/text_version" />
  24. <TextView
  25. android:id="@+id/version"
  26. android:paddingLeft="2dp"
  27. android:layout_width="wrap_content"
  28. android:layout_height="wrap_content"
  29. android:textAppearance="?android:attr/textAppearanceMedium"
  30. android:text="" />
  31. </LinearLayout>
  32. <TextView
  33. android:id="@+id/text_description"
  34. android:layout_width="wrap_content"
  35. android:layout_height="wrap_content"
  36. android:paddingTop="@dimen/activity_vertical_margin"
  37. android:text="@string/description" />
  38. <TextView
  39. android:id="@+id/link_website"
  40. android:layout_width="wrap_content"
  41. android:layout_height="wrap_content"
  42. android:paddingTop="@dimen/activity_vertical_margin"
  43. android:text="@string/link_website" />
  44. <TextView
  45. android:id="@+id/link_github"
  46. android:layout_width="wrap_content"
  47. android:layout_height="wrap_content"
  48. android:paddingTop="@dimen/activity_vertical_margin"
  49. android:text="@string/link_github" />
  50. <TextView
  51. android:id="@+id/link_tracing"
  52. android:layout_width="wrap_content"
  53. android:layout_height="wrap_content"
  54. android:paddingTop="@dimen/activity_vertical_margin"
  55. android:text="@string/link_tracing" />
  56. <TextView
  57. android:id="@+id/text_authors"
  58. android:layout_width="wrap_content"
  59. android:layout_height="wrap_content"
  60. android:textAppearance="?android:attr/textAppearanceMedium"
  61. android:paddingTop="@dimen/activity_vertical_margin"
  62. android:text="@string/authors" />
  63. <TextView
  64. android:id="@+id/text_author_1"
  65. android:layout_width="wrap_content"
  66. android:layout_height="wrap_content"
  67. android:text="@string/authors_m" />
  68. <TextView
  69. android:id="@+id/text_author_2"
  70. android:layout_width="wrap_content"
  71. android:layout_height="wrap_content"
  72. android:text="@string/authors_w" />
  73. <TextView
  74. android:id="@+id/text_author_3"
  75. android:layout_width="wrap_content"
  76. android:layout_height="wrap_content"
  77. android:text="@string/authors_l" />
  78. </LinearLayout>
  79. </LinearLayout>