<?xml version="1.0" encoding="utf-8"?>
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:background="@drawable/shape_player_dialog_bg_white"
|
android:gravity="center_horizontal"
|
android:orientation="vertical">
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_marginTop="18dp"
|
android:text="网络提醒"
|
android:textColor="#333333"
|
android:textSize="18sp" />
|
|
<TextView
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginTop="8dp"
|
android:layout_marginBottom="8dp"
|
android:gravity="center"
|
android:padding="20dp"
|
android:text="您现在正在使用移动数据观看"
|
android:textColor="#99232323"
|
android:textSize="16sp" />
|
|
<View
|
android:layout_width="match_parent"
|
android:layout_height="1dp"
|
android:background="#E1E1E1"></View>
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="50dp">
|
|
<TextView
|
android:id="@+id/tv_contiue"
|
android:layout_width="0dp"
|
android:layout_height="match_parent"
|
android:layout_weight="1"
|
android:gravity="center"
|
android:text="土豪请随意"
|
android:textColor="#ff999999"
|
android:textSize="17sp" />
|
|
<View
|
android:layout_width="1dp"
|
android:layout_height="match_parent"
|
android:layout_marginTop="5dp"
|
android:layout_marginBottom="5dp"
|
android:background="#E1E1E1"></View>
|
|
<TextView
|
android:id="@+id/tv_close"
|
android:layout_width="0dp"
|
android:layout_height="match_parent"
|
android:layout_weight="1"
|
android:gravity="center"
|
android:text="关闭视频"
|
android:textColor="#ff333333"
|
android:textSize="17sp" />
|
|
|
</LinearLayout>
|
|
|
</LinearLayout>
|