activity_about.xml 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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/text_authors"
  40. android:layout_width="wrap_content"
  41. android:layout_height="wrap_content"
  42. android:textAppearance="?android:attr/textAppearanceMedium"
  43. android:paddingTop="@dimen/activity_vertical_margin"
  44. android:text="@string/authors" />
  45. <TextView
  46. android:id="@+id/text_author_1"
  47. android:layout_width="wrap_content"
  48. android:layout_height="wrap_content"
  49. android:text="@string/authors_m" />
  50. <TextView
  51. android:id="@+id/text_author_2"
  52. android:layout_width="wrap_content"
  53. android:layout_height="wrap_content"
  54. android:text="@string/authors_w" />
  55. <TextView
  56. android:id="@+id/text_author_3"
  57. android:layout_width="wrap_content"
  58. android:layout_height="wrap_content"
  59. android:text="@string/authors_l" />
  60. <TextView
  61. android:id="@+id/text_author_4"
  62. android:layout_width="wrap_content"
  63. android:layout_height="wrap_content"
  64. android:text="@string/authors_j" />
  65. </LinearLayout>
  66. </LinearLayout>