blob: d3171f53245263594fb44b1efad90d8d742d8ecd [file] [log] [blame]
Alexandre Lisiona3650992013-11-13 14:19:35 -05001<?xml version="1.0" encoding="utf-8"?>
2<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3 android:layout_width="match_parent"
4 android:layout_height="match_parent"
5 android:orientation="vertical"
6 android:weightSum="1" >
7
8 <TextView
9 android:id="@+id/list_header_title"
10 style="?android:attr/listSeparatorTextViewStyle"
11 android:layout_width="match_parent"
12 android:layout_height="wrap_content"
13 android:paddingBottom="2dip"
14 android:paddingLeft="5dp"
15 android:layout_marginLeft="10dp"
16 android:layout_marginRight="10dp"
17 android:paddingTop="2dp"
18 android:text="Codecs" />
19
20 <LinearLayout
21 android:id="@+id/lv_holder"
22 android:layout_width="match_parent"
23 android:layout_height="match_parent"
24 android:orientation="vertical"
25 android:weightSum="1" >
26
27 <org.sflphone.views.dragsortlv.DragSortListView
28 xmlns:dslv="http://schemas.android.com/apk/res/org.sflphone"
29 android:id="@+id/dndlistview"
30 android:layout_width="match_parent"
31 android:layout_height="wrap_content"
32 android:layout_margin="5dp"
33 android:choiceMode="multipleChoice"
34 android:descendantFocusability="beforeDescendants"
35 android:dividerHeight="1px"
36 android:padding="5dp"
37 dslv:collapsed_height="1px"
38 dslv:drag_enabled="true"
39 dslv:drag_handle_id="@id/drag_handle"
40 dslv:drag_scroll_start="0.33"
41 dslv:drag_start_mode="onLongPress"
42 dslv:float_alpha="0.6"
43 dslv:float_background_color="@color/sfl_action_blue"
44 dslv:remove_enabled="false"
45 dslv:slide_shuffle_speed="0.3" />
46 </LinearLayout>
47
48 <ListView
49 android:id="@android:id/list"
50 android:layout_width="match_parent"
51 android:layout_height="wrap_content" >
52 </ListView>
53
54</LinearLayout>