activity_drag_sort.xml 2.6 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="fill_parent"
  4. android:layout_height="fill_parent"
  5. android:background="@android:color/white"
  6. android:fitsSystemWindows="true"
  7. android:orientation="vertical" >
  8. <include
  9. android:id="@+id/ll_title"
  10. layout="@layout/fragment_title" />
  11. <LinearLayout
  12. android:layout_width="fill_parent"
  13. android:layout_height="match_parent"
  14. android:background="@android:color/white"
  15. android:orientation="vertical" >
  16. <LinearLayout
  17. android:layout_width="fill_parent"
  18. android:layout_height="0dp"
  19. android:layout_weight="1"
  20. android:orientation="vertical" >
  21. <com.dongkesoft.ibossmini.view.DragListView
  22. android:id="@+id/top_drag_list"
  23. android:layout_width="fill_parent"
  24. android:layout_height="match_parent"
  25. android:cacheColorHint="#00000000"
  26. android:divider="#e5e5e5"
  27. android:dividerHeight="1px"
  28. android:fadingEdge="none"
  29. android:listSelector="#00000000" />
  30. </LinearLayout>
  31. <!-- <View style="@style/thin_fill_line" />
  32. <LinearLayout
  33. android:layout_width="wrap_content"
  34. android:layout_height="wrap_content"
  35. android:layout_marginRight="15dp"
  36. android:layout_marginTop="10dp"
  37. android:gravity="left"
  38. android:orientation="horizontal" >
  39. <TextView
  40. android:id="@+id/bottomTitle"
  41. android:layout_width="wrap_content"
  42. android:layout_height="wrap_content"
  43. android:layout_marginLeft="20dp"
  44. android:text="更多信息" />
  45. </LinearLayout>
  46. <View
  47. style="@style/thin_fill_line"
  48. android:layout_marginTop="10dp" />
  49. <LinearLayout
  50. android:layout_width="fill_parent"
  51. android:layout_height="0dp"
  52. android:layout_weight="1"
  53. android:orientation="vertical" >
  54. <com.dongkesoft.ibossmini.view.BottomDragListView
  55. android:id="@+id/bottom_drag_list"
  56. android:layout_width="fill_parent"
  57. android:layout_height="match_parent"
  58. android:cacheColorHint="#00000000"
  59. android:divider="#e5e5e5"
  60. android:dividerHeight="1px"
  61. android:fadingEdge="none"
  62. android:listSelector="#00000000" />
  63. </LinearLayout> -->
  64. </LinearLayout>
  65. </LinearLayout>