2022-04-16 23:46:43 +05:30
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2022-10-29 19:55:15 +05:30
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2022-04-16 23:46:43 +05:30
|
|
|
android:layout_width="wrap_content"
|
2022-06-05 20:03:31 +05:30
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical">
|
2022-04-16 23:46:43 +05:30
|
|
|
|
2022-05-20 15:50:36 +05:30
|
|
|
<TextView
|
|
|
|
android:id="@+id/title"
|
2022-04-16 23:46:43 +05:30
|
|
|
android:layout_width="match_parent"
|
2022-05-20 15:50:36 +05:30
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_margin="10dp"
|
2022-06-05 20:03:31 +05:30
|
|
|
android:gravity="center"
|
|
|
|
android:text="@string/app_name"
|
2022-06-03 22:19:48 +05:30
|
|
|
android:textSize="20sp" />
|
|
|
|
|
|
|
|
<Spinner
|
|
|
|
android:id="@+id/playlists_spinner"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2022-06-05 20:03:31 +05:30
|
|
|
android:layout_margin="8dp"
|
2022-10-29 19:55:15 +05:30
|
|
|
android:paddingVertical="8dp"
|
|
|
|
android:paddingStart="8dp"
|
|
|
|
android:paddingEnd="40dp"
|
|
|
|
tools:ignore="RtlSymmetry" />
|
2022-05-20 15:50:36 +05:30
|
|
|
|
2022-11-19 15:42:26 +05:30
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_gravity="end"
|
|
|
|
android:layout_marginEnd="16dp">
|
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/create_playlist"
|
|
|
|
style="@style/CustomDialogButton"
|
|
|
|
android:text="@string/createPlaylist"
|
|
|
|
android:layout_marginEnd="8dp"/>
|
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/addToPlaylist"
|
|
|
|
style="@style/CustomDialogButton"
|
|
|
|
android:text="@string/addToPlaylist" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
2022-04-16 23:46:43 +05:30
|
|
|
|
|
|
|
</LinearLayout>
|