help_about.xml 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:orientation="vertical"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent">
  6. <include layout="@layout/navigationbar" />
  7. <LinearLayout
  8. android:gravity="center_vertical"
  9. android:orientation="vertical"
  10. android:background="@drawable/about_boder"
  11. android:layout_width="match_parent"
  12. android:layout_height="match_parent"
  13. android:layout_marginLeft="15dp"
  14. android:layout_marginTop="15dp"
  15. android:layout_marginRight="15dp"
  16. android:layout_marginBottom="15dp">
  17. <LinearLayout
  18. android:gravity="center"
  19. android:orientation="vertical"
  20. android:layout_width="match_parent"
  21. android:layout_height="0dp"
  22. android:layout_weight="1">
  23. <TextView
  24. android:textSize="22sp"
  25. android:textStyle="bold"
  26. android:layout_width="wrap_content"
  27. android:layout_height="wrap_content"
  28. android:text="@string/about_for"
  29. android:singleLine="true" />
  30. <TextView
  31. android:textSize="18sp"
  32. android:id="@+id/version"
  33. android:layout_width="wrap_content"
  34. android:layout_height="wrap_content"
  35. android:layout_marginTop="2dp"
  36. android:text="@string/about_ver"
  37. android:singleLine="true" />
  38. </LinearLayout>
  39. <LinearLayout
  40. android:gravity="center"
  41. android:orientation="vertical"
  42. android:paddingBottom="10dp"
  43. android:layout_width="match_parent"
  44. android:layout_height="52dp">
  45. <TextView
  46. android:textSize="10sp"
  47. android:layout_width="wrap_content"
  48. android:layout_height="wrap_content"
  49. android:text="@string/about_copy"
  50. android:singleLine="true" />
  51. <TextView
  52. android:textSize="9sp"
  53. android:layout_width="wrap_content"
  54. android:layout_height="wrap_content"
  55. android:layout_marginTop="5dp"
  56. android:text="@string/about_all"
  57. android:singleLine="true" />
  58. </LinearLayout>
  59. </LinearLayout>
  60. </LinearLayout>