no_disturb_footer.xml 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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="match_parent"
  5. android:orientation="vertical"
  6. android:paddingLeft="@dimen/isetting_item_padding_left"
  7. android:paddingRight="@dimen/isetting_item_padding_right">
  8. <LinearLayout
  9. android:id="@+id/time_layout"
  10. android:layout_width="wrap_content"
  11. android:layout_height="wrap_content"
  12. android:orientation="vertical">
  13. <RelativeLayout
  14. android:id="@+id/start_time_layout"
  15. android:layout_width="match_parent"
  16. android:layout_height="wrap_content"
  17. android:paddingBottom="10dp"
  18. android:paddingTop="10dp">
  19. <TextView
  20. android:id="@+id/start_text"
  21. android:layout_width="wrap_content"
  22. android:layout_height="wrap_content"
  23. android:text="@string/time_from"
  24. android:textSize="15sp" />
  25. <TextView
  26. android:id="@+id/start_time_value"
  27. android:layout_width="wrap_content"
  28. android:layout_height="wrap_content"
  29. android:layout_alignParentRight="true"
  30. android:text="@string/time_from_default"
  31. android:textSize="15sp" />
  32. </RelativeLayout>
  33. <View style="@style/horizontal_light_thin_divider" />
  34. <RelativeLayout
  35. android:id="@+id/end_time_layout"
  36. android:layout_width="match_parent"
  37. android:layout_height="wrap_content"
  38. android:paddingBottom="10dp"
  39. android:paddingTop="10dp">
  40. <TextView
  41. android:id="@+id/end_text"
  42. android:layout_width="wrap_content"
  43. android:layout_height="wrap_content"
  44. android:text="@string/time_to"
  45. android:textSize="15sp" />
  46. <TextView
  47. android:id="@+id/end_time_value"
  48. android:layout_width="wrap_content"
  49. android:layout_height="wrap_content"
  50. android:layout_alignParentRight="true"
  51. android:text="@string/time_to_default"
  52. android:textSize="15sp" />
  53. </RelativeLayout>
  54. <View style="@style/horizontal_light_thin_divider" />
  55. </LinearLayout>
  56. <TextView
  57. android:id="@+id/no_disturb_tip"
  58. android:layout_width="fill_parent"
  59. android:layout_height="wrap_content"
  60. android:layout_marginBottom="20dip"
  61. android:layout_marginTop="10dip"
  62. android:text="@string/no_disturb_tips"
  63. android:textSize="15sp" />
  64. </LinearLayout>