mirror of
https://github.com/libre-tube/LibreTube.git
synced 2024-12-16 15:20:31 +05:30
47 lines
1.4 KiB
XML
47 lines
1.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
android:id="@+id/title"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_margin="10dp"
|
|
android:gravity="center"
|
|
android:text="@string/app_name"
|
|
android:textSize="20sp" />
|
|
|
|
<Spinner
|
|
android:id="@+id/playlists_spinner"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_margin="8dp"
|
|
android:paddingVertical="8dp"
|
|
android:paddingStart="8dp"
|
|
android:paddingEnd="40dp"
|
|
tools:ignore="RtlSymmetry" />
|
|
|
|
<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>
|
|
|
|
</LinearLayout>
|