2023-02-22 15:45:43 +05:30
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2023-08-15 18:34:14 +05:30
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
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">
|
|
|
|
|
2023-08-15 18:34:14 +05:30
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/standard_bottom_sheet"
|
|
|
|
style="@style/Widget.Material3.BottomSheet"
|
2023-03-16 21:31:40 +05:30
|
|
|
android:layout_width="match_parent"
|
2023-08-15 18:34:14 +05:30
|
|
|
android:layout_height="match_parent"
|
|
|
|
app:layout_behavior="com.google.android.material.bottomsheet.BottomSheetBehavior">
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<!-- Drag handle for accessibility -->
|
|
|
|
<com.google.android.material.bottomsheet.BottomSheetDragHandleView
|
|
|
|
android:id="@+id/drag_handle"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="20dp"
|
|
|
|
android:paddingTop="8dp"
|
|
|
|
android:paddingBottom="0dp"
|
|
|
|
app:tint="?android:attr/textColorSecondaryInverse" />
|
|
|
|
|
2023-11-02 18:09:36 +05:30
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginHorizontal="18dp"
|
|
|
|
android:layout_marginVertical="6dp"
|
|
|
|
android:layout_marginStart="15dp"
|
|
|
|
android:ellipsize="marquee"
|
|
|
|
android:fadingEdge="horizontal"
|
|
|
|
android:text="@string/stats_for_nerds"
|
|
|
|
android:textColor="?android:textColorPrimary"
|
|
|
|
android:textSize="24sp" />
|
|
|
|
|
|
|
|
<com.google.android.material.divider.MaterialDivider
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
|
|
|
|
<ScrollView
|
2023-08-15 18:34:14 +05:30
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2023-11-02 18:09:36 +05:30
|
|
|
android:nestedScrollingEnabled="true">
|
2023-08-15 18:34:14 +05:30
|
|
|
|
2023-11-02 18:09:36 +05:30
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
2023-08-15 18:34:14 +05:30
|
|
|
android:layout_height="wrap_content"
|
2023-11-02 18:09:36 +05:30
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:paddingHorizontal="20dp"
|
|
|
|
android:paddingVertical="7dp">
|
|
|
|
|
|
|
|
<com.google.android.material.textfield.TextInputLayout
|
|
|
|
style="@style/CustomDialogTextInputLayout"
|
2023-12-20 23:52:38 +05:30
|
|
|
android:id="@+id/video_id_copy"
|
2023-11-02 18:09:36 +05:30
|
|
|
android:layout_marginTop="10dp"
|
2023-12-20 23:52:38 +05:30
|
|
|
app:endIconMode="custom"
|
|
|
|
app:endIconContentDescription="@string/copy_tooltip"
|
|
|
|
app:endIconDrawable="@drawable/ic_copy"
|
2023-11-02 18:09:36 +05:30
|
|
|
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>
|
2023-08-15 18:34:14 +05:30
|
|
|
</LinearLayout>
|
|
|
|
</FrameLayout>
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|