diff options
author | Scott Jackson <daneren2005@gmail.com> | 2012-11-27 23:00:55 -0800 |
---|---|---|
committer | Scott Jackson <daneren2005@gmail.com> | 2012-11-27 23:00:55 -0800 |
commit | 7c5eb3e1a1ab6b664ca23f03198eb73cffda29ce (patch) | |
tree | edf1f46bac1b8c6d0886d7e4f4f1a062ac08d3b7 | |
parent | 8691998f4c7ebb4ed1123222338e7a16b9d57f2e (diff) | |
download | dsub-7c5eb3e1a1ab6b664ca23f03198eb73cffda29ce.tar.gz dsub-7c5eb3e1a1ab6b664ca23f03198eb73cffda29ce.tar.bz2 dsub-7c5eb3e1a1ab6b664ca23f03198eb73cffda29ce.zip |
Fixed layout for update playlist info dialog
-rw-r--r-- | subsonic-android/res/layout/update_playlist.xml | 82 |
1 files changed, 42 insertions, 40 deletions
diff --git a/subsonic-android/res/layout/update_playlist.xml b/subsonic-android/res/layout/update_playlist.xml index 4ab6197c..3d7e0fe2 100644 --- a/subsonic-android/res/layout/update_playlist.xml +++ b/subsonic-android/res/layout/update_playlist.xml @@ -2,46 +2,48 @@ android:orientation="vertical" android:layout_width="wrap_content" android:layout_height="wrap_content"> + + <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:orientation="horizontal" + android:layout_width="fill_parent" + android:layout_height="wrap_content"> - <TextView - android:id="@+id/get_playlist_name_label" - android:layout_width="match_parent" - android:layout_height="wrap_content" - android:layout_marginTop="16dp" - android:layout_marginLeft="4dp" - android:layout_marginRight="4dp" - android:layout_marginBottom="0dp" - android:textSize="20dp" - android:text="@string/common.name" /> - <EditText - android:id="@+id/get_playlist_name" - android:inputType="text" - android:layout_width="match_parent" - android:layout_height="wrap_content" - android:layout_marginTop="4dp" - android:layout_marginLeft="4dp" - android:layout_marginRight="4dp" - android:layout_marginBottom="4dp" - android:hint="@string/common.name" /> + <TextView + android:id="@+id/get_playlist_name_label" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_marginLeft="4dp" + android:textSize="20dp" + android:text="@string/common.name" /> + <EditText + android:id="@+id/get_playlist_name" + android:inputType="text" + android:layout_width="fill_parent" + android:layout_height="wrap_content" + android:layout_weight="1" + android:layout_marginLeft="4dp" + android:hint="@string/common.name" /> + </LinearLayout> - <TextView - android:id="@+id/get_playlist_comment_label" - android:layout_width="match_parent" - android:layout_height="wrap_content" - android:layout_marginTop="16dp" - android:layout_marginLeft="4dp" - android:layout_marginRight="4dp" - android:layout_marginBottom="0dp" - android:textSize="20dp" - android:text="@string/common.comment" /> - <EditText - android:id="@+id/get_playlist_comment" - android:inputType="text" - android:layout_width="match_parent" - android:layout_height="wrap_content" - android:layout_marginTop="4dp" - android:layout_marginLeft="4dp" - android:layout_marginRight="4dp" - android:layout_marginBottom="16dp" - android:hint="@string/common.comment"/> + <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:orientation="horizontal" + android:layout_width="fill_parent" + android:layout_height="wrap_content"> + + <TextView + android:id="@+id/get_playlist_comment_label" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_marginLeft="4dp" + android:textSize="20dp" + android:text="@string/common.comment" /> + <EditText + android:id="@+id/get_playlist_comment" + android:inputType="text" + android:layout_width="fill_parent" + android:layout_height="wrap_content" + android:layout_weight="1" + android:layout_marginLeft="4dp" + android:hint="@string/common.comment" /> + </LinearLayout> </LinearLayout>
\ No newline at end of file |