diff options
author | Scott Jackson <daneren2005@gmail.com> | 2013-03-01 06:42:22 -0800 |
---|---|---|
committer | Scott Jackson <daneren2005@gmail.com> | 2013-03-01 06:42:22 -0800 |
commit | 5b3206eb380a2c879a0309243ab43bd3638b9ba6 (patch) | |
tree | 6a93100d3e799383d6591c03b241f87b4d18a2b5 /subsonic-android | |
parent | b87ef06431e30575ddf641b65d17a5a6aa5cd75b (diff) | |
download | dsub-5b3206eb380a2c879a0309243ab43bd3638b9ba6.tar.gz dsub-5b3206eb380a2c879a0309243ab43bd3638b9ba6.tar.bz2 dsub-5b3206eb380a2c879a0309243ab43bd3638b9ba6.zip |
Make albums drag droppable as well
Diffstat (limited to 'subsonic-android')
-rw-r--r-- | subsonic-android/res/layout/album_list_item.xml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/subsonic-android/res/layout/album_list_item.xml b/subsonic-android/res/layout/album_list_item.xml index d76f105f..0b84b4f3 100644 --- a/subsonic-android/res/layout/album_list_item.xml +++ b/subsonic-android/res/layout/album_list_item.xml @@ -1,8 +1,9 @@ <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:orientation="horizontal"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content">
+ android:id="@id/drag_handle"
+ android:orientation="horizontal"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content">
<ImageView
android:id="@+id/album_coverart"
|