dialog_choose_music.xml 1.84 KB
Newer Older
upwork.021 committed
1
<?xml version="1.0" encoding="utf-8"?>
范玉宾 committed
2 3
<RelativeLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
4 5
        xmlns:app="http://schemas.android.com/apk/res-auto"
        android:layout_width="match_parent"
范玉宾 committed
6
        android:layout_height="match_parent">
7

范玉宾 committed
8
    <FrameLayout
9 10
            android:layout_width="match_parent"
            android:layout_height="match_parent"
范玉宾 committed
11 12
            android:layout_marginTop="150dp"
            android:background="@drawable/shape_bg_solid_282e3f_r_top_20">
upwork.021 committed
13

范玉宾 committed
14
        <androidx.cardview.widget.CardView
范玉宾 committed
15
                android:layout_width="match_parent"
范玉宾 committed
16 17 18
                android:layout_height="match_parent"
                android:layout_marginBottom="-20dp"
                app:cardCornerRadius="20dp">
范玉宾 committed
19

范玉宾 committed
20
            <FrameLayout
范玉宾 committed
21
                    android:layout_width="match_parent"
范玉宾 committed
22
                    android:layout_height="match_parent">
范玉宾 committed
23

范玉宾 committed
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
                <WebView
                        android:id="@+id/wv_choose_music"
                        android:layout_width="match_parent"
                        android:layout_height="match_parent"
                        android:background="#282E3F"
                        android:scrollbars="none" />

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

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

            </FrameLayout>
范玉宾 committed
45

范玉宾 committed
46
        </androidx.cardview.widget.CardView>
upwork.021 committed
47

范玉宾 committed
48
    </FrameLayout>
upwork.021 committed
49

范玉宾 committed
50
</RelativeLayout>