activity_user_checked.xml 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="wrap_content"
  5. android:layout_marginLeft="30dp"
  6. android:layout_marginRight="30dp"
  7. android:background="@drawable/dialog_style_bg"
  8. android:orientation="vertical" >
  9. <TextView
  10. android:id="@+id/title_tv"
  11. android:layout_width="match_parent"
  12. android:layout_height="wrap_content"
  13. android:layout_gravity="center_horizontal"
  14. android:layout_marginBottom="10dp"
  15. android:layout_marginTop="10dp"
  16. android:gravity="center"
  17. android:singleLine="true"
  18. android:textColor="@color/black"
  19. android:textSize="@dimen/BigTextSize" />
  20. <TextView
  21. android:id="@+id/des_tv"
  22. android:layout_width="match_parent"
  23. android:layout_height="wrap_content"
  24. android:layout_marginLeft="10dp"
  25. android:layout_marginRight="10dp"
  26. android:gravity="center"
  27. android:minHeight="80dp"
  28. android:textColor="@color/black"
  29. android:textSize="@dimen/NormalTextSize" />
  30. <View
  31. android:layout_width="match_parent"
  32. android:layout_height="1px"
  33. android:layout_marginTop="10dp"
  34. android:background="@color/dark_grey" />
  35. <LinearLayout
  36. android:layout_width="match_parent"
  37. android:layout_height="wrap_content"
  38. android:orientation="horizontal" >
  39. <Button
  40. android:id="@+id/left_btn"
  41. android:layout_width="0dp"
  42. android:layout_height="40dp"
  43. android:layout_weight="1"
  44. android:background="@drawable/dialog_style_left_btn_bg"
  45. android:text="@string/exit"
  46. android:textColor="@color/orange"
  47. android:textSize="@dimen/NormalTextSize" />
  48. <View
  49. android:layout_width="1px"
  50. android:layout_height="match_parent"
  51. android:background="@color/dark_grey" />
  52. <Button
  53. android:id="@+id/right_btn"
  54. android:layout_width="0dp"
  55. android:layout_height="40dp"
  56. android:layout_weight="1"
  57. android:background="@drawable/dialog_style_right_btn_bg"
  58. android:text="@string/login_again"
  59. android:textColor="@color/orange"
  60. android:textSize="@dimen/NormalTextSize" />
  61. </LinearLayout>
  62. </LinearLayout>