mirror of https://github.com/deniscerri/ytdlnis
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
223 lines
9.2 KiB
XML
223 lines
9.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.core.widget.NestedScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:scrollbars="none"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent">
|
|
|
|
<com.google.android.material.textfield.TextInputLayout
|
|
android:id="@+id/title_textinput"
|
|
style="@style/Widget.Material3.TextInputLayout.FilledBox"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="10dp"
|
|
android:hint="@string/title"
|
|
android:padding="10dp">
|
|
|
|
<com.google.android.material.textfield.TextInputEditText
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:inputType="text" />
|
|
|
|
</com.google.android.material.textfield.TextInputLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:padding="10dp">
|
|
|
|
<com.google.android.material.textfield.TextInputLayout
|
|
android:id="@+id/author_textinput"
|
|
style="@style/Widget.Material3.TextInputLayout.FilledBox"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="40"
|
|
android:hint="@string/author">
|
|
|
|
<com.google.android.material.textfield.TextInputEditText
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:inputType="text" />
|
|
|
|
</com.google.android.material.textfield.TextInputLayout>
|
|
|
|
|
|
<com.google.android.material.textfield.TextInputLayout
|
|
android:id="@+id/downloadContainer"
|
|
style="@style/Widget.Material3.TextInputLayout.FilledBox.ExposedDropdownMenu"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="45"
|
|
android:hint="@string/container"
|
|
android:paddingStart="10dp">
|
|
|
|
<AutoCompleteTextView
|
|
android:id="@+id/container_textview"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:inputType="none"
|
|
app:simpleItems="@array/audio_containers" />
|
|
|
|
</com.google.android.material.textfield.TextInputLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:paddingHorizontal="10dp"
|
|
android:text="@string/video_quality" />
|
|
|
|
<include layout="@layout/format_item" />
|
|
|
|
|
|
<com.google.android.material.textfield.TextInputLayout
|
|
android:id="@+id/outputPath"
|
|
style="@style/Widget.Material3.TextInputLayout.FilledBox"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:hint="@string/save_dir"
|
|
android:paddingHorizontal="10dp"
|
|
android:paddingTop="10dp"
|
|
android:paddingBottom="0dp">
|
|
|
|
<com.google.android.material.textfield.TextInputEditText
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:maxLines="2"
|
|
android:inputType="textMultiLine" />
|
|
|
|
</com.google.android.material.textfield.TextInputLayout>
|
|
|
|
<TextView
|
|
android:id="@+id/freespace"
|
|
android:paddingHorizontal="20dp"
|
|
android:textSize="13sp"
|
|
android:textColor="@android:color/tab_indicator_text"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content" />
|
|
|
|
|
|
<LinearLayout
|
|
android:id="@+id/adjust_video"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:padding="10dp">
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:paddingBottom="5dp"
|
|
android:text="@string/adjust_video"
|
|
android:textSize="15sp" />
|
|
|
|
<HorizontalScrollView
|
|
android:scrollbars="none"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content">
|
|
|
|
<com.google.android.material.chip.ChipGroup
|
|
android:id="@+id/chipGroup1"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
app:chipSpacingVertical="0dp"
|
|
app:singleLine="true">
|
|
|
|
<com.google.android.material.chip.Chip
|
|
android:id="@+id/embed_subtitles"
|
|
style="@style/Widget.Material3.Chip.Filter.Elevated"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:checked="false"
|
|
android:text="@string/embed_subtitles" />
|
|
|
|
<com.google.android.material.chip.Chip
|
|
android:id="@+id/add_chapters"
|
|
style="@style/Widget.Material3.Chip.Filter.Elevated"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:checked="false"
|
|
android:text="@string/add_chapter" />
|
|
|
|
<com.google.android.material.chip.Chip
|
|
android:id="@+id/save_thumbnail"
|
|
style="@style/Widget.Material3.Chip.Filter.Elevated"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:checked="false"
|
|
android:text="@string/save_thumb" />
|
|
|
|
</com.google.android.material.chip.ChipGroup>
|
|
|
|
|
|
</HorizontalScrollView>
|
|
|
|
<HorizontalScrollView
|
|
android:scrollbars="none"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content">
|
|
|
|
<com.google.android.material.chip.ChipGroup
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
app:singleLine="true">
|
|
|
|
<com.google.android.material.chip.Chip
|
|
android:id="@+id/sponsorblock_filters"
|
|
style="@style/Widget.Material3.Chip.Assist.Elevated"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center"
|
|
android:text="SponsorBlock"
|
|
app:chipIconVisible="true"
|
|
app:chipIcon="@drawable/ic_money"
|
|
android:minWidth="30dp"
|
|
app:cornerRadius="10dp"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
<com.google.android.material.chip.Chip
|
|
android:id="@+id/split_by_chapters"
|
|
style="@style/Widget.Material3.Chip.Filter.Elevated"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:checked="false"
|
|
android:text="@string/split_by_chapters"/>
|
|
|
|
<com.google.android.material.chip.Chip
|
|
android:id="@+id/cut"
|
|
style="@style/Widget.Material3.Chip.Assist.Elevated"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center"
|
|
app:chipIconVisible="true"
|
|
app:chipIcon="@drawable/ic_cut"
|
|
android:minWidth="30dp"
|
|
android:text="@string/cut"
|
|
app:cornerRadius="10dp"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
|
|
</com.google.android.material.chip.ChipGroup>
|
|
|
|
</HorizontalScrollView>
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
</androidx.core.widget.NestedScrollView> |