blob: 672492bf0bf9dce3b7e7741fcc386b369893da5b [file] [log] [blame]
Adrien BĂ©raud04d822c2015-04-02 17:44:36 -04001<?xml version="1.0" encoding="utf-8"?>
2<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
3 android:layout_width="match_parent"
4 android:layout_height="match_parent" >
5
6 <LinearLayout
7 android:layout_width="match_parent"
8 android:layout_height="match_parent"
9 android:layout_marginLeft="10dp"
10 android:layout_marginRight="10dp"
11 android:orientation="vertical" >
12
13 <LinearLayout
14 android:id="@+id/lv_holder_prefs"
15 android:layout_width="match_parent"
16 android:layout_height="match_parent"
17 android:orientation="vertical"
18 android:weightSum="1" >
19
20 <ListView
21 android:id="@android:id/list"
22 android:layout_width="match_parent"
23 android:layout_height="wrap_content"
24 android:layout_margin="5dp" >
25 </ListView>
26 </LinearLayout>
27
28 <TextView
29 android:id="@+id/list_header_title"
30 style="?android:attr/listSeparatorTextViewStyle"
31 android:layout_width="match_parent"
32 android:layout_height="wrap_content"
33 android:layout_marginLeft="10dp"
34 android:layout_marginRight="10dp"
35 android:paddingBottom="2dip"
36 android:paddingLeft="5dp"
37 android:paddingTop="2dp"
38 android:text="Codecs" />
39
40 <LinearLayout
41 android:id="@+id/lv_holder"
42 android:layout_width="match_parent"
43 android:layout_height="match_parent"
44 android:orientation="vertical"
45 android:weightSum="1" >
46
47 <cx.ring.views.dragsortlv.DragSortListView
48 xmlns:dslv="http://schemas.android.com/apk/res/cx.ring"
49 android:id="@+id/dndlistview"
50 android:layout_width="match_parent"
51 android:layout_height="wrap_content"
52 android:layout_margin="5dp"
53 android:choiceMode="multipleChoice"
54 android:descendantFocusability="beforeDescendants"
55 android:dividerHeight="1px"
56 android:padding="5dp"
57 dslv:collapsed_height="1px"
58 dslv:drag_enabled="true"
59 dslv:drag_handle_id="@id/drag_handle"
60 dslv:drag_scroll_start="0.33"
61 dslv:drag_start_mode="onDown"
62 dslv:float_alpha="0.6"
63 dslv:float_background_color="@color/sfl_action_blue"
64 dslv:remove_enabled="false"
65 dslv:slide_shuffle_speed="0.3" />
66 </LinearLayout>
67 </LinearLayout>
68
69</ScrollView>