mirror of
https://github.com/libre-tube/LibreTube.git
synced 2024-12-16 07:10:29 +05:30
53 lines
2.1 KiB
XML
53 lines
2.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical">
|
|
|
|
<com.google.android.material.textfield.TextInputLayout
|
|
style="@style/CustomDialogTextInputLayout"
|
|
android:layout_marginTop="10dp"
|
|
android:hint="@string/video_id">
|
|
|
|
<com.google.android.material.textfield.TextInputEditText
|
|
android:id="@+id/video_id"
|
|
style="@style/DisabledTextInput" />
|
|
</com.google.android.material.textfield.TextInputLayout>
|
|
|
|
<com.google.android.material.textfield.TextInputLayout
|
|
style="@style/CustomDialogTextInputLayout"
|
|
android:layout_marginTop="10dp"
|
|
android:hint="@string/audio">
|
|
|
|
<com.google.android.material.textfield.TextInputEditText
|
|
android:id="@+id/audio_info"
|
|
style="@style/DisabledTextInput" />
|
|
</com.google.android.material.textfield.TextInputLayout>
|
|
|
|
<com.google.android.material.textfield.TextInputLayout
|
|
style="@style/CustomDialogTextInputLayout"
|
|
android:layout_marginTop="10dp"
|
|
android:hint="@string/video">
|
|
|
|
<com.google.android.material.textfield.TextInputEditText
|
|
android:id="@+id/video_info"
|
|
style="@style/DisabledTextInput" />
|
|
</com.google.android.material.textfield.TextInputLayout>
|
|
|
|
<com.google.android.material.textfield.TextInputLayout
|
|
style="@style/CustomDialogTextInputLayout"
|
|
android:layout_marginTop="10dp"
|
|
android:hint="@string/quality">
|
|
|
|
<com.google.android.material.textfield.TextInputEditText
|
|
android:id="@+id/video_quality"
|
|
style="@style/DisabledTextInput" />
|
|
</com.google.android.material.textfield.TextInputLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
</ScrollView> |