diff options
author | Scott Jackson <daneren2005@gmail.com> | 2013-01-18 19:09:21 -0800 |
---|---|---|
committer | Scott Jackson <daneren2005@gmail.com> | 2013-01-18 19:09:21 -0800 |
commit | fd568f11e052354e97fef2ba51c912f39caba2d3 (patch) | |
tree | 1c58c5b987b07e870d30cac095d86785cb23440c /subsonic-android/res | |
parent | 77d3088273dea71fe6fa79e3e57648dbf805eb89 (diff) | |
download | dsub-fd568f11e052354e97fef2ba51c912f39caba2d3.tar.gz dsub-fd568f11e052354e97fef2ba51c912f39caba2d3.tar.bz2 dsub-fd568f11e052354e97fef2ba51c912f39caba2d3.zip |
Closes #92 Add public info/updating to playlists
Diffstat (limited to 'subsonic-android/res')
-rw-r--r-- | subsonic-android/res/layout/update_playlist.xml | 21 | ||||
-rw-r--r-- | subsonic-android/res/values/strings.xml | 1 |
2 files changed, 22 insertions, 0 deletions
diff --git a/subsonic-android/res/layout/update_playlist.xml b/subsonic-android/res/layout/update_playlist.xml index 3d7e0fe2..7354ef5c 100644 --- a/subsonic-android/res/layout/update_playlist.xml +++ b/subsonic-android/res/layout/update_playlist.xml @@ -46,4 +46,25 @@ android:layout_marginLeft="4dp" android:hint="@string/common.comment" /> </LinearLayout> + + <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_public_label" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_marginLeft="4dp" + android:textSize="20dp" + android:text="@string/common.public" /> + <CheckBox + android:id="@+id/get_playlist_public" + android:layout_width="fill_parent" + android:layout_height="wrap_content" + android:layout_weight="1" + android:layout_marginLeft="4dp" + android:checked="false"/> + </LinearLayout> </LinearLayout>
\ No newline at end of file diff --git a/subsonic-android/res/values/strings.xml b/subsonic-android/res/values/strings.xml index 9c9ac4b8..38c8a5c5 100644 --- a/subsonic-android/res/values/strings.xml +++ b/subsonic-android/res/values/strings.xml @@ -17,6 +17,7 @@ <string name="common.info">Details</string>
<string name="common.name">Name</string>
<string name="common.comment">Comment</string>
+ <string name="common.public">Public</string>
<string name="common.webview">Play Web View (Flash)</string>
<string name="common.play_external">Play External Player</string>
<string name="common.stream_external">Stream External Player</string>
|