Skip to content
Snippets Groups Projects
Commit ab6e3e8e authored by Alexandre Perraud's avatar Alexandre Perraud Committed by Geoffrey Métais
Browse files

Playlist : Fix the 6 saved playlists issue

(cherry picked from commit 265f0544)
parent da70960c
No related branches found
No related tags found
No related merge requests found
......@@ -20,28 +20,12 @@
android:inputType="text"
android:imeOptions="actionSend"/>
</android.support.design.widget.TextInputLayout>
<FrameLayout
android:id="@+id/dialog_list_container"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/half_default_margin"
android:layout_below="@+id/dialog_playlist_name">
<ListView
android:id="@android:id/list"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
<TextView
android:id="@android:id/empty"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/noplaylist"/>
</FrameLayout>
<Button
android:id="@+id/dialog_playlist_cancel"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@android:string/cancel"
android:layout_below="@id/dialog_list_container"
android:layout_below="@+id/dialog_playlist_name"
android:layout_toLeftOf="@+id/dialog_playlist_save"
tools:targetApi="11"
style="?android:attr/borderlessButtonStyle"/>
......@@ -51,7 +35,23 @@
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:text="@android:string/ok"
android:layout_below="@id/dialog_list_container"
android:layout_below="@+id/dialog_playlist_name"
tools:targetApi="11"
style="?android:attr/borderlessButtonStyle"/>
<FrameLayout
android:id="@+id/dialog_list_container"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/half_default_margin"
android:layout_below="@+id/dialog_playlist_cancel">
<ListView
android:id="@android:id/list"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
<TextView
android:id="@android:id/empty"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/noplaylist"/>
</FrameLayout>
</RelativeLayout>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment