activity_customer_current_account_report.xml 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:background="#fff"
  6. android:fitsSystemWindows="true" >
  7. <LinearLayout
  8. android:layout_width="match_parent"
  9. android:layout_height="match_parent"
  10. android:background="#9fff"
  11. android:orientation="vertical" >
  12. <RelativeLayout
  13. android:layout_width="match_parent"
  14. android:layout_height="@dimen/rl_layout_height_45"
  15. android:background="@color/oldred" >
  16. <RelativeLayout
  17. android:layout_width="wrap_content"
  18. android:layout_height="fill_parent"
  19. android:paddingLeft="@dimen/rl_paddingLeft_10"
  20. android:paddingRight="@dimen/rl_paddingRight_10" >
  21. <TextView
  22. android:id="@+id/title_tv"
  23. android:layout_width="wrap_content"
  24. android:layout_height="fill_parent"
  25. android:gravity="center"
  26. android:textColor="@color/orange"
  27. android:textSize="@dimen/title_textsize" />
  28. <ImageView
  29. android:id="@+id/iv_left"
  30. android:layout_width="19dp"
  31. android:layout_height="19dp"
  32. android:layout_centerVertical="true"
  33. android:src="@drawable/title_back"
  34. android:visibility="gone" />
  35. </RelativeLayout>
  36. <TextView
  37. android:id="@+id/tv_left"
  38. android:layout_width="@dimen/tv_layout_width_50"
  39. android:layout_height="match_parent"
  40. android:gravity="center"
  41. android:scaleType="center"
  42. android:visibility="gone" />
  43. <ImageView
  44. android:id="@+id/iv_center"
  45. android:layout_width="fill_parent"
  46. android:layout_height="fill_parent"
  47. android:layout_marginBottom="@dimen/iv_layout_marginBottom_15"
  48. android:layout_marginTop="@dimen/iv_layout_marginTop_15"
  49. android:visibility="gone" />
  50. <TextView
  51. android:id="@+id/tv_center"
  52. android:layout_width="wrap_content"
  53. android:layout_height="fill_parent"
  54. android:layout_centerHorizontal="true"
  55. android:gravity="center"
  56. android:textColor="@color/white"
  57. android:textSize="@dimen/textsize_20"
  58. android:visibility="gone" />
  59. <LinearLayout
  60. android:id="@+id/ll_right"
  61. android:layout_width="wrap_content"
  62. android:layout_height="wrap_content"
  63. android:layout_alignParentRight="true"
  64. android:layout_centerVertical="true"
  65. android:orientation="horizontal" >
  66. <ImageView
  67. android:id="@+id/iv_right"
  68. android:layout_width="@dimen/iv_layout_width_16"
  69. android:layout_height="@dimen/iv_layout_height_16"
  70. android:layout_gravity="center_vertical"
  71. android:background="@drawable/filter" />
  72. <TextView
  73. android:id="@+id/tv_right"
  74. android:layout_width="wrap_content"
  75. android:layout_height="wrap_content"
  76. android:layout_gravity="center_vertical"
  77. android:paddingRight="@dimen/tv_paddingRight_10"
  78. android:text="筛选"
  79. android:textColor="@color/white"
  80. android:textSize="@dimen/textsize_14" />
  81. </LinearLayout>
  82. </RelativeLayout>
  83. <!-- <include layout="@layout/fragment_title" /> -->
  84. <FrameLayout
  85. android:layout_width="match_parent"
  86. android:layout_height="match_parent" >
  87. <ListView
  88. android:id="@+id/lv_customer_current"
  89. android:layout_width="match_parent"
  90. android:background="@color/white"
  91. android:divider="@null"
  92. android:layout_height="match_parent" />
  93. <RelativeLayout
  94. android:id="@+id/rl_no_data"
  95. android:layout_width="match_parent"
  96. android:layout_height="match_parent"
  97. android:background="@color/white"
  98. android:visibility="gone" >
  99. <LinearLayout
  100. android:layout_width="wrap_content"
  101. android:layout_height="wrap_content"
  102. android:layout_centerInParent="true"
  103. android:orientation="vertical" >
  104. <ImageView
  105. android:layout_width="@dimen/iv_layout_width_64"
  106. android:layout_height="@dimen/iv_layout_height_64"
  107. android:background="@drawable/icon_no_data" />
  108. <TextView
  109. android:layout_width="wrap_content"
  110. android:layout_height="wrap_content"
  111. android:layout_gravity="center"
  112. android:layout_marginTop="@dimen/tv_layout_marginTop_10"
  113. android:text="无数据"
  114. android:textSize="@dimen/textsize_22" />
  115. </LinearLayout>
  116. </RelativeLayout>
  117. </FrameLayout>
  118. </LinearLayout>
  119. <com.dongkesoft.ibossmini.view.GenericDrawerLayout
  120. android:id="@+id/drawerlayout"
  121. android:layout_width="match_parent"
  122. android:layout_height="match_parent" />
  123. </FrameLayout>