| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <?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:orientation="vertical" >
- <ScrollView
- android:layout_width="match_parent"
- android:layout_height="match_parent">
- <LinearLayout
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:background="@android:color/white"
- android:orientation="vertical" >
- <LinearLayout
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:orientation="vertical" >
- <com.pengguichu.testdraglistview.listview.DragListView
- android:id="@+id/top_drag_list"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:cacheColorHint="#00000000"
- android:divider="#e5e5e5"
- android:dividerHeight="1px"
- android:fadingEdge="none"
- android:listSelector="#00000000" />
- </LinearLayout>
-
- <LinearLayout
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:layout_marginTop="20dp"
- android:orientation="vertical" >
- <com.pengguichu.testdraglistview.listview.BottomDragListView
- android:id="@+id/bottom_drag_list"
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:cacheColorHint="#00000000"
- android:divider="#e5e5e5"
- android:dividerHeight="1px"
- android:fadingEdge="none"
- android:listSelector="#00000000" />
- </LinearLayout>
- </LinearLayout>
- </ScrollView>
- </LinearLayout>
|