<?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>
|