activity_stocking_checked_search.xml 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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="@color/white"
  6. android:fitsSystemWindows="true" >
  7. <LinearLayout
  8. android:layout_width="match_parent"
  9. android:layout_height="match_parent"
  10. android:background="@color/white"
  11. android:orientation="vertical" >
  12. <include layout="@layout/fragment_title" />
  13. <LinearLayout
  14. android:id="@+id/ll_search"
  15. android:layout_width="match_parent"
  16. android:layout_height="35dp"
  17. android:layout_gravity="center_vertical"
  18. android:layout_marginBottom="10dp"
  19. android:layout_marginLeft="15dp"
  20. android:layout_marginRight="15dp"
  21. android:layout_marginTop="10dp"
  22. android:background="@drawable/rounded_corners_search_bg"
  23. android:gravity="center"
  24. android:orientation="horizontal" >
  25. <ImageView
  26. android:id="@+id/ivSearch"
  27. android:layout_width="wrap_content"
  28. android:layout_height="wrap_content"
  29. android:background="@drawable/ss1"
  30. android:visibility="gone" />
  31. <TextView
  32. android:id="@+id/tvSearch"
  33. android:layout_width="wrap_content"
  34. android:layout_height="wrap_content"
  35. android:text="搜索" />
  36. </LinearLayout>
  37. <LinearLayout
  38. android:id="@+id/ll_no_data"
  39. android:layout_width="match_parent"
  40. android:layout_height="match_parent"
  41. android:layout_gravity="center_vertical"
  42. android:gravity="center"
  43. android:orientation="vertical"
  44. android:visibility="gone" >
  45. <ImageView
  46. android:layout_width="64dp"
  47. android:layout_height="64dp"
  48. android:background="@drawable/icon_no_data" />
  49. <TextView
  50. android:layout_width="wrap_content"
  51. android:layout_height="wrap_content"
  52. android:text="无数据"
  53. android:textSize="@dimen/textsize_22" />
  54. </LinearLayout>
  55. <LinearLayout
  56. android:layout_width="match_parent"
  57. android:layout_height="wrap_content"
  58. android:layout_gravity="center_vertical"
  59. android:background="@color/white"
  60. android:orientation="vertical" >
  61. <com.dongkesoft.ibossmini.utils.XListViewNew
  62. android:id="@+id/lv_stock"
  63. android:layout_width="match_parent"
  64. android:layout_height="match_parent"
  65. android:cacheColorHint="@null"
  66. android:divider="@color/EFEFEF"
  67. android:dividerHeight="10dp"
  68. android:scrollbars="vertical" />
  69. </LinearLayout>
  70. </LinearLayout>
  71. <com.dongkesoft.ibossmini.view.GenericDrawerLayout
  72. android:id="@+id/drawerlayout"
  73. android:layout_width="match_parent"
  74. android:layout_height="match_parent" />
  75. </FrameLayout>