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"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:layout_width="wrap_content"
|
2022-06-03 22:19:48 +05:30
|
|
|
android:layout_height="wrap_content">
|
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:text="@string/app_name"
|
|
|
|
android:gravity="center"
|
|
|
|
android:layout_margin="10dp"
|
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"
|
|
|
|
android:padding="8dp"
|
|
|
|
android:layout_margin="8dp" />
|
2022-05-20 15:50:36 +05:30
|
|
|
|
2022-04-16 23:46:43 +05:30
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:gravity="center">
|
2022-06-03 22:19:48 +05:30
|
|
|
|
2022-04-16 23:46:43 +05:30
|
|
|
<Button
|
2022-04-18 00:20:10 +05:30
|
|
|
android:id="@+id/addToPlaylist"
|
2022-04-16 23:46:43 +05:30
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2022-04-18 00:20:10 +05:30
|
|
|
android:text="@string/addToPlaylist"
|
2022-06-04 12:01:34 +05:30
|
|
|
android:textColor="@color/white"
|
2022-04-16 23:46:43 +05:30
|
|
|
android:padding="8dp"
|
2022-06-03 22:19:48 +05:30
|
|
|
android:layout_margin="8dp" />
|
2022-04-16 23:46:43 +05:30
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</LinearLayout>
|