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

30 lines
928 B
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"
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"
android:padding="8dp" />
2022-05-20 15:50:36 +05:30
2022-06-05 20:03:31 +05:30
<Button
android:id="@+id/addToPlaylist"
android:text="@string/addToPlaylist"
2022-06-26 13:31:43 +05:30
style="@style/CustomDialogButton"
2022-06-26 15:50:56 +05:30
android:layout_marginRight="16dp" />
2022-04-16 23:46:43 +05:30
</LinearLayout>