LibreTube/app/src/main/res/layout/dialog_addtoplaylist.xml

39 lines
1.3 KiB
XML
Raw Normal View History

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"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
>
<ImageView
android:src="@drawable/ic_libretube_foreground"
android:layout_width="match_parent"
android:layout_height="64dp"
android:scaleType="center"
android:background="#CD5757"
android:contentDescription="@string/app_name" />
2022-04-18 00:20:10 +05:30
<Spinner
android:id="@+id/playlists_spinner"
2022-04-16 23:46:43 +05:30
android:layout_width="match_parent"
android:layout_height="wrap_content"
2022-04-18 00:20:10 +05:30
android:padding="8dp"
android:layout_margin="8dp"/>
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">
<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-04-16 23:46:43 +05:30
android:padding="8dp"
android:layout_margin="8dp"/>
</LinearLayout>
</LinearLayout>