* #34699: advanced settings screen working
diff --git a/res/layout/frag_audio_mgmt.xml b/res/layout/frag_audio_mgmt.xml
new file mode 100644
index 0000000..d3171f5
--- /dev/null
+++ b/res/layout/frag_audio_mgmt.xml
@@ -0,0 +1,54 @@
+<?xml version="1.0" encoding="utf-8"?>
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+    android:layout_width="match_parent"
+    android:layout_height="match_parent"
+    android:orientation="vertical"
+    android:weightSum="1" >
+
+    <TextView
+        android:id="@+id/list_header_title"
+        style="?android:attr/listSeparatorTextViewStyle"
+        android:layout_width="match_parent"
+        android:layout_height="wrap_content"
+        android:paddingBottom="2dip"
+        android:paddingLeft="5dp"
+        android:layout_marginLeft="10dp"
+        android:layout_marginRight="10dp"
+        android:paddingTop="2dp"
+        android:text="Codecs" />
+
+    <LinearLayout
+        android:id="@+id/lv_holder"
+        android:layout_width="match_parent"
+        android:layout_height="match_parent"
+        android:orientation="vertical"
+        android:weightSum="1" >
+
+        <org.sflphone.views.dragsortlv.DragSortListView
+            xmlns:dslv="http://schemas.android.com/apk/res/org.sflphone"
+            android:id="@+id/dndlistview"
+            android:layout_width="match_parent"
+            android:layout_height="wrap_content"
+            android:layout_margin="5dp"
+            android:choiceMode="multipleChoice"
+            android:descendantFocusability="beforeDescendants"
+            android:dividerHeight="1px"
+            android:padding="5dp"
+            dslv:collapsed_height="1px"
+            dslv:drag_enabled="true"
+            dslv:drag_handle_id="@id/drag_handle"
+            dslv:drag_scroll_start="0.33"
+            dslv:drag_start_mode="onLongPress"
+            dslv:float_alpha="0.6"
+            dslv:float_background_color="@color/sfl_action_blue"
+            dslv:remove_enabled="false"
+            dslv:slide_shuffle_speed="0.3" />
+    </LinearLayout>
+
+    <ListView
+        android:id="@android:id/list"
+        android:layout_width="match_parent"
+        android:layout_height="wrap_content" >
+    </ListView>
+
+</LinearLayout>
\ No newline at end of file