activity_stocking_checked_list.xml 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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:background="@color/EFEFEF"
  6. android:orientation="vertical" >
  7. <include layout="@layout/fragment_title" />
  8. <RelativeLayout
  9. android:id="@+id/framestockcheck"
  10. android:layout_width="match_parent"
  11. android:layout_height="match_parent"
  12. android:background="@color/white"
  13. android:visibility="gone" >
  14. <LinearLayout
  15. android:layout_width="wrap_content"
  16. android:layout_height="wrap_content"
  17. android:layout_centerInParent="true"
  18. android:orientation="vertical" >
  19. <ImageView
  20. android:layout_width="64dp"
  21. android:layout_height="64dp"
  22. android:background="@drawable/icon_no_data" />
  23. <TextView
  24. android:layout_width="wrap_content"
  25. android:layout_height="wrap_content"
  26. android:layout_gravity="center"
  27. android:layout_marginTop="10dp"
  28. android:text="无数据"
  29. android:textSize="@dimen/textsize_22" />
  30. </LinearLayout>
  31. </RelativeLayout>
  32. <com.dongkesoft.ibossmini.utils.XListView
  33. android:id="@+id/listview_stock_check"
  34. android:layout_width="fill_parent"
  35. android:layout_height="fill_parent"
  36. android:background="@color/white"
  37. android:cacheColorHint="#00000000"
  38. android:divider="@null"
  39. android:fastScrollEnabled="true"
  40. android:focusable="true"
  41. android:listSelector="@drawable/list_null"
  42. android:visibility="visible" >
  43. </com.dongkesoft.ibossmini.utils.XListView>
  44. </LinearLayout>