diff options
author | Scott Jackson <daneren2005@gmail.com> | 2012-10-22 21:44:26 -0700 |
---|---|---|
committer | Scott Jackson <daneren2005@gmail.com> | 2012-10-22 21:44:26 -0700 |
commit | 728fc5b1573217ee5d216d057c4f42c34d13e582 (patch) | |
tree | bbf73defbabf100c8505b2f80fb968188f2508f2 | |
parent | 6152bb642d02c87977a21fe2d0814842de6756d4 (diff) | |
download | dsub-728fc5b1573217ee5d216d057c4f42c34d13e582.tar.gz dsub-728fc5b1573217ee5d216d057c4f42c34d13e582.tar.bz2 dsub-728fc5b1573217ee5d216d057c4f42c34d13e582.zip |
Added labels to name/comment on update information dialog
-rw-r--r-- | subsonic-android/res/layout/update_playlist.xml | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/subsonic-android/res/layout/update_playlist.xml b/subsonic-android/res/layout/update_playlist.xml index c73d93ef..4ab6197c 100644 --- a/subsonic-android/res/layout/update_playlist.xml +++ b/subsonic-android/res/layout/update_playlist.xml @@ -3,16 +3,37 @@ android:layout_width="wrap_content" 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="16dp" + 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_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" |