blob: 0478b676579fa8b25c29dbbc733dc636eb8add57 [file] [log] [blame]
Alexandre Lisiona3650992013-11-13 14:19:35 -05001<?xml version="1.0" encoding="utf-8"?>
Alexandre Lision68ee0ac2013-12-06 15:06:19 -05002<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
Alexandre Lisiona3650992013-11-13 14:19:35 -05003 android:layout_width="match_parent"
Alexandre Lision68ee0ac2013-12-06 15:06:19 -05004 android:layout_height="match_parent" >
Alexandre Lisiona3650992013-11-13 14:19:35 -05005
6 <LinearLayout
Alexandre Lisiona3650992013-11-13 14:19:35 -05007 android:layout_width="match_parent"
8 android:layout_height="match_parent"
Alexandre Lision68ee0ac2013-12-06 15:06:19 -05009 android:layout_marginLeft="10dp"
10 android:layout_marginRight="10dp"
11 android:orientation="vertical" >
Alexandre Lisiona3650992013-11-13 14:19:35 -050012
Alexandre Lision68ee0ac2013-12-06 15:06:19 -050013 <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"
Alexandre Lisiona3650992013-11-13 14:19:35 -050031 android:layout_width="match_parent"
32 android:layout_height="wrap_content"
Alexandre Lision68ee0ac2013-12-06 15:06:19 -050033 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 <org.sflphone.views.dragsortlv.DragSortListView
48 xmlns:dslv="http://schemas.android.com/apk/res/org.sflphone"
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="onLongPress"
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>
Alexandre Lisiona3650992013-11-13 14:19:35 -050067 </LinearLayout>
68
Alexandre Lision68ee0ac2013-12-06 15:06:19 -050069</ScrollView>