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

45 lines
1.6 KiB
XML
Raw Normal View History

2022-03-04 21:27:10 +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"
2022-03-04 21:27:10 +05:30
android:layout_width="wrap_content"
2022-06-27 22:47:52 +05:30
android:layout_height="wrap_content"
2022-09-23 17:59:16 +05:30
android:orientation="vertical"
android:paddingHorizontal="20dp">
2022-03-04 21:27:10 +05:30
2022-10-06 17:56:30 +05:30
<com.google.android.material.textfield.TextInputLayout
2022-10-06 18:06:46 +05:30
android:layout_width="match_parent"
2022-10-06 18:44:06 +05:30
android:layout_height="wrap_content"
2022-10-06 18:06:46 +05:30
android:layout_marginTop="5dp"
android:layout_marginBottom="10dp"
2022-10-06 17:56:30 +05:30
android:hint="@string/filename">
<com.google.android.material.textfield.TextInputEditText
android:id="@+id/fileName"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inputType="text" />
</com.google.android.material.textfield.TextInputLayout>
<com.github.libretube.ui.views.DropdownMenu
2022-03-04 21:27:10 +05:30
android:id="@+id/video_spinner"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:hint="@string/video"
app:icon="@drawable/ic_video" />
2022-06-03 22:19:48 +05:30
<com.github.libretube.ui.views.DropdownMenu
2022-03-04 21:27:10 +05:30
android:id="@+id/audio_spinner"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:hint="@string/audio"
app:icon="@drawable/ic_audio" />
2022-06-03 22:19:48 +05:30
<com.github.libretube.ui.views.DropdownMenu
2022-12-25 14:37:01 +05:30
android:id="@+id/subtitle_spinner"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:hint="@string/captions"
app:icon="@drawable/ic_caption" />
2022-12-25 14:37:01 +05:30
2022-03-04 21:27:10 +05:30
</LinearLayout>