admin
2021-02-03 1981dee5aec45793d3c4ebdbc4e637528c71b3c5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="220dp"
    android:layout_height="match_parent"
    android:background="#b3000000"
    android:gravity="center_horizontal"
    android:orientation="vertical"
    android:padding="20dp">
 
    <FrameLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
 
        android:paddingLeft="14dp"
        android:paddingRight="14dp">
 
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="left|center_vertical"
            android:text="分享到"
            android:textColor="#ffffffff"
            android:textSize="18sp" />
 
        <ImageView
            android:id="@+id/iv_close"
            android:layout_width="30dp"
            android:layout_height="30dp"
            android:layout_gravity="right|center_vertical"
            android:src="@drawable/ic_player_dialog_close"></ImageView>
 
 
    </FrameLayout>
 
 
    <GridView
        android:id="@+id/gv_share"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_marginTop="20dp"
        android:layout_weight="1"></GridView>
 
 
</LinearLayout>