* #40714: Display handles on left of accounts and codecs
diff --git a/res/layout/frag_accounts_list.xml b/res/layout/frag_accounts_list.xml
index b7dea22..e364ec5 100644
--- a/res/layout/frag_accounts_list.xml
+++ b/res/layout/frag_accounts_list.xml
@@ -32,7 +32,7 @@
             dslv:drag_enabled="true"
             dslv:drag_handle_id="@id/drag_handle"
             dslv:drag_scroll_start="0.33"
-            dslv:drag_start_mode="onLongPress"
+            dslv:drag_start_mode="onDown"
             dslv:float_alpha="0.6"
             dslv:float_background_color="@color/sfl_action_blue"
             dslv:remove_enabled="false"
diff --git a/res/layout/frag_audio_mgmt.xml b/res/layout/frag_audio_mgmt.xml
index 0478b67..9149e37 100644
--- a/res/layout/frag_audio_mgmt.xml
+++ b/res/layout/frag_audio_mgmt.xml
@@ -58,7 +58,7 @@
                 dslv:drag_enabled="true"
                 dslv:drag_handle_id="@id/drag_handle"
                 dslv:drag_scroll_start="0.33"
-                dslv:drag_start_mode="onLongPress"
+                dslv:drag_start_mode="onDown"
                 dslv:float_alpha="0.6"
                 dslv:float_background_color="@color/sfl_action_blue"
                 dslv:remove_enabled="false"
diff --git a/res/layout/item_account_pref.xml b/res/layout/item_account_pref.xml
index 32b2e20..24bd7a4 100644
--- a/res/layout/item_account_pref.xml
+++ b/res/layout/item_account_pref.xml
@@ -1,15 +1,24 @@
 <?xml version="1.0" encoding="utf-8"?>
 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
-    android:id="@id/drag_handle"
+    android:id="@id/container"
     android:layout_width="match_parent"
     android:layout_height="wrap_content"
     android:padding="4dp" >
 
+    <ImageView
+            android:id="@+id/drag_handle"
+            android:layout_width="wrap_content"
+            android:layout_height="wrap_content"
+            android:layout_centerVertical="true"
+            android:layout_alignParentLeft="true"
+            android:layout_marginLeft="10dp"
+            android:src="@drawable/handle"/>
+
     <TextView
         android:id="@+id/account_alias"
         android:layout_width="wrap_content"
         android:layout_height="wrap_content"
-        android:layout_alignParentLeft="true"
+        android:layout_toRightOf="@+id/drag_handle"
         android:layout_alignParentTop="true"
         android:layout_marginBottom="4dp"
         android:layout_marginLeft="4dp"
@@ -19,7 +28,7 @@
         android:id="@+id/account_host"
         android:layout_width="wrap_content"
         android:layout_height="wrap_content"
-        android:layout_alignParentLeft="true"
+        android:layout_toRightOf="@+id/drag_handle"
         android:layout_below="@+id/account_alias"
         android:layout_marginLeft="4dp"
         android:textAppearance="?android:attr/textAppearanceSmall" />
@@ -29,6 +38,7 @@
         android:layout_width="wrap_content"
         android:layout_height="wrap_content"
         android:layout_alignParentRight="true"
+        android:layout_marginRight="10dp"
         android:focusable="false"
         android:layout_centerVertical="true" />
 
diff --git a/res/layout/item_codec.xml b/res/layout/item_codec.xml
index 12a9a26..e91cb8a 100644
--- a/res/layout/item_codec.xml
+++ b/res/layout/item_codec.xml
@@ -1,14 +1,23 @@
 <?xml version="1.0" encoding="utf-8"?>
 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
-    android:id="@id/drag_handle"
+    android:id="@id/container"
     android:layout_width="match_parent"
     android:layout_height="?android:attr/listPreferredItemHeight" >
 
+    <ImageView
+            android:id="@+id/drag_handle"
+            android:layout_width="wrap_content"
+            android:layout_height="wrap_content"
+            android:layout_centerVertical="true"
+            android:layout_alignParentLeft="true"
+            android:layout_marginLeft="10dp"
+            android:src="@drawable/handle"/>
+
     <TextView
         android:id="@+id/codec_name"
         android:layout_width="wrap_content"
         android:layout_height="?android:attr/listPreferredItemHeight"
-        android:layout_alignParentLeft="true"
+        android:layout_toRightOf="@+id/drag_handle"
         android:layout_marginLeft="4dp"
         android:gravity="center_vertical"
         android:textSize="18sp" />