notice.xml 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!--
  3. ~ Copyright (c) 2015. Ncomz. All Rights Reserved
  4. -->
  5. <LinearLayout
  6. xmlns:android="http://schemas.android.com/apk/res/android"
  7. android:id="@+id/llPageRoot"
  8. android:layout_width="match_parent"
  9. android:layout_height="match_parent"
  10. android:background="@drawable/color_body_02"
  11. android:fitsSystemWindows="true"
  12. android:orientation="vertical">
  13. <include layout="@layout/app_toolbar"/>
  14. <RelativeLayout
  15. android:layout_width="match_parent"
  16. android:layout_height="0dp"
  17. android:layout_weight="1">
  18. <LinearLayout
  19. android:layout_width="match_parent"
  20. android:layout_height="match_parent"
  21. android:orientation="vertical"
  22. >
  23. <android.support.v4.widget.SwipeRefreshLayout
  24. android:id="@+id/swiperefreshlayou"
  25. android:layout_width="match_parent"
  26. android:layout_height="0dp"
  27. android:layout_weight="1"
  28. android:visibility="visible">
  29. <android.support.v7.widget.RecyclerView
  30. android:id="@+id/rcvList"
  31. android:layout_width="match_parent"
  32. android:layout_height="match_parent"
  33. android:overScrollMode="never"
  34. android:clipToPadding="false"/>
  35. </android.support.v4.widget.SwipeRefreshLayout>
  36. <LinearLayout
  37. android:id="@+id/llNodata1"
  38. android:layout_width="match_parent"
  39. android:layout_height="0dp"
  40. android:layout_weight="1"
  41. android:gravity="center_horizontal"
  42. android:orientation="vertical"
  43. android:paddingTop="80dp"
  44. android:paddingLeft="15dp"
  45. android:paddingRight="15dp"
  46. android:visibility="gone">
  47. <TextView
  48. android:id="@+id/tvNodataTitle1"
  49. android:layout_width="match_parent"
  50. android:layout_height="wrap_content"
  51. android:gravity="center"
  52. android:includeFontPadding="false"
  53. android:text="@string/layout_notice_02"
  54. android:textColor="@color/color_text_01"
  55. android:textSize="@dimen/size_font_02"/>
  56. </LinearLayout>
  57. </LinearLayout>
  58. <ImageView
  59. android:layout_width="match_parent"
  60. android:layout_height="6dp"
  61. android:layout_alignParentTop="true"
  62. android:background="@drawable/shadow_top"/>
  63. <ImageView
  64. android:layout_width="match_parent"
  65. android:layout_height="7dp"
  66. android:layout_alignParentBottom="true"
  67. android:background="@drawable/shadow_bottom"/>
  68. </RelativeLayout>
  69. <LinearLayout
  70. android:layout_width="match_parent"
  71. android:layout_height="wrap_content"
  72. android:orientation="vertical">
  73. <View
  74. style="@style/width_Divider_02"/>
  75. <LinearLayout
  76. android:layout_width="match_parent"
  77. android:layout_height="50dp"
  78. android:layout_gravity="center_horizontal"
  79. android:background="@drawable/color_bg_01"
  80. android:gravity="center">
  81. <LinearLayout
  82. android:id="@+id/llBtn1"
  83. android:layout_width="0dp"
  84. android:layout_height="match_parent"
  85. android:layout_weight="1"
  86. android:gravity="center">
  87. <TextView
  88. android:id="@+id/tvBtn1"
  89. android:text="@string/layout_close"
  90. style="@style/bottom_button_text_no"/>
  91. </LinearLayout>
  92. </LinearLayout>
  93. </LinearLayout>
  94. </LinearLayout>