| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:background="@android:color/white"
- android:fitsSystemWindows="true"
- android:orientation="vertical" >
- <include
- android:id="@+id/ll_title"
- layout="@layout/fragment_title" />
- <LinearLayout
- android:layout_width="fill_parent"
- android:layout_height="match_parent"
- android:background="@android:color/white"
- android:orientation="vertical" >
- <LinearLayout
- android:layout_width="fill_parent"
- android:layout_height="0dp"
- android:layout_weight="1"
- android:orientation="vertical" >
- <com.dongkesoft.ibossmini.view.DragListView
- android:id="@+id/top_drag_list"
- android:layout_width="fill_parent"
- android:layout_height="match_parent"
- android:cacheColorHint="#00000000"
- android:divider="#e5e5e5"
- android:dividerHeight="1px"
- android:fadingEdge="none"
- android:listSelector="#00000000" />
- </LinearLayout>
- <!-- <View style="@style/thin_fill_line" />
- <LinearLayout
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginRight="15dp"
- android:layout_marginTop="10dp"
- android:gravity="left"
- android:orientation="horizontal" >
- <TextView
- android:id="@+id/bottomTitle"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginLeft="20dp"
- android:text="更多信息" />
- </LinearLayout>
- <View
- style="@style/thin_fill_line"
- android:layout_marginTop="10dp" />
- <LinearLayout
- android:layout_width="fill_parent"
- android:layout_height="0dp"
- android:layout_weight="1"
- android:orientation="vertical" >
- <com.dongkesoft.ibossmini.view.BottomDragListView
- android:id="@+id/bottom_drag_list"
- android:layout_width="fill_parent"
- android:layout_height="match_parent"
- android:cacheColorHint="#00000000"
- android:divider="#e5e5e5"
- android:dividerHeight="1px"
- android:fadingEdge="none"
- android:listSelector="#00000000" />
- </LinearLayout> -->
- </LinearLayout>
- </LinearLayout>
|