<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:background="@drawable/shape_bg_solid_282e3f_r_top_20"
    >

    <LinearLayout
        android:id="@+id/ll_close"
        android:layout_width="match_parent"
        android:gravity="center_horizontal"
        android:layout_height="38dp"
        app:layout_constraintTop_toTopOf="parent"
        >

        <ImageView
            android:layout_width="24dp"
            android:layout_height="10dp"
            android:src="@drawable/ic_close_choose_music"
            android:layout_marginTop="12dp"
            />
    </LinearLayout>

    <WebView
        android:id="@+id/wv_choose_music"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        app:layout_constraintTop_toBottomOf="@id/ll_close"
        app:layout_constraintBottom_toBottomOf="parent"
        android:background="#282E3F"
        android:scrollbars="none"
        />

</androidx.constraintlayout.widget.ConstraintLayout>