activity_about.xml 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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/text_authors"
  52. android:layout_width="wrap_content"
  53. android:layout_height="wrap_content"
  54. android:textAppearance="?android:attr/textAppearanceMedium"
  55. android:paddingTop="@dimen/activity_vertical_margin"
  56. android:text="@string/authors" />
  57. <TextView
  58. android:id="@+id/text_author_1"
  59. android:layout_width="wrap_content"
  60. android:layout_height="wrap_content"
  61. android:text="@string/authors_m" />
  62. <TextView
  63. android:id="@+id/text_author_2"
  64. android:layout_width="wrap_content"
  65. android:layout_height="wrap_content"
  66. android:text="@string/authors_w" />
  67. <TextView
  68. android:id="@+id/text_author_3"
  69. android:layout_width="wrap_content"
  70. android:layout_height="wrap_content"
  71. android:text="@string/authors_l" />
  72. <TextView
  73. android:id="@+id/text_author_4"
  74. android:layout_width="wrap_content"
  75. android:layout_height="wrap_content"
  76. android:text="@string/authors_j" />
  77. </LinearLayout>
  78. </LinearLayout>