blob: a37e3793b57152fa74cdb3a2416e3721525099f8 [file] [log] [blame]
Alexandre Lision4b4233a2013-10-16 17:24:17 -04001<?xml version="1.0" encoding="utf-8"?>
Alexandre Lisionc1849932013-10-24 10:09:32 -04002<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3 android:layout_width="fill_parent"
4 android:layout_height="fill_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="5dip"
15 android:paddingTop="2dip"
16 android:text="Codecs" />
17
18 <org.sflphone.views.dragsortlv.DragSortListView
19 xmlns:dslv="http://schemas.android.com/apk/res/org.sflphone"
20 android:id="@+id/dndlistview"
21 android:layout_width="match_parent"
22 android:layout_height="match_parent"
23 android:layout_margin="3dp"
24 android:choiceMode="multipleChoice"
25 android:descendantFocusability="beforeDescendants"
26 android:dividerHeight="1px"
27 android:padding="3dp"
28 dslv:collapsed_height="1px"
29 dslv:drag_enabled="true"
30 dslv:drag_handle_id="@id/drag_handle"
31 dslv:drag_scroll_start="0.33"
32 dslv:drag_start_mode="onLongPress"
33 dslv:float_alpha="0.6"
34 dslv:float_background_color="@color/sfl_action_blue"
35 dslv:remove_enabled="false"
36 dslv:slide_shuffle_speed="0.3" />
37
38 <ListView
39 android:id="@android:id/list"
40 android:layout_width="match_parent"
41 android:layout_height="match_parent" >
42 </ListView>
43
44</LinearLayout>