mirror of
https://github.com/libre-tube/LibreTube.git
synced 2024-12-16 07:10:29 +05:30
43 lines
1.3 KiB
XML
43 lines
1.3 KiB
XML
<?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"
|
|
android:layout_height="wrap_content">
|
|
|
|
|
|
<TextView
|
|
android:id="@+id/title"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/app_name"
|
|
android:gravity="center"
|
|
android:layout_margin="10dp"
|
|
android:textSize="20sp" />
|
|
|
|
<Spinner
|
|
android:id="@+id/video_spinner"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_margin="8dp" />
|
|
|
|
<Spinner
|
|
android:id="@+id/audio_spinner"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_margin="8dp" />
|
|
|
|
<Button
|
|
android:id="@+id/download"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/download"
|
|
android:layout_gravity="right"
|
|
android:backgroundTint="@android:color/transparent"
|
|
android:textColor="?attr/colorPrimary"
|
|
android:textSize="14sp"
|
|
android:padding="8dp"
|
|
android:layout_marginRight="16dp"
|
|
android:layout_marginBottom="8dp" />
|
|
|
|
</LinearLayout>
|