2023-02-22 15:45:43 +05:30
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2023-03-16 21:31:40 +05:30
|
|
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
2023-02-22 15:45:43 +05:30
|
|
|
android:layout_width="match_parent"
|
2023-03-16 21:31:40 +05:30
|
|
|
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>
|