12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- <?xml version="1.0" encoding="utf-8"?>
- <!--
- ~ Copyright (C) 2019 Baidu, Inc. All Rights Reserved.
- -->
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="260dp"
- android:layout_height="wrap_content"
- android:background="@drawable/bdp_bg_white_round"
- android:orientation="vertical" >
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content" >
- <ImageView
- android:id="@+id/bd_iv_back_close"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignParentRight="true"
- android:layout_alignParentTop="true"
- android:layout_marginRight="18dp"
- android:layout_marginTop="18dp"
- android:background="@drawable/bdp_icon_close_selector"
- android:visibility="gone" />
- <TextView
- android:id="@+id/bd_tv_dialog_tip_title"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="30dp"
- android:gravity="center"
- android:textColor="@color/bdp_color_color_ff333333"
- android:textSize="16sp" />
- <TextView
- android:id="@+id/bd_tv_dialog_tip_content"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_below="@id/bd_tv_dialog_tip_title"
- android:layout_centerInParent="true"
- android:layout_marginTop="28dp"
- android:layout_margin="10dp"
- android:gravity="center"
- android:textColor="@color/bdp_color_color_ffcccccc"
- android:textSize="14sp" />
- </RelativeLayout>
- <View
- android:layout_width="match_parent"
- android:layout_height="0.5dp"
- android:background="@color/bdp_color_color_ffcccccc"/>
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="50dp"
- android:gravity="center_vertical"
- >
- <TextView
- android:id="@+id/btnA"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignParentTop="true"
- android:layout_centerHorizontal="true"
- android:textColor="@color/bdp_color_color_ffe5006a"
- android:textSize="16sp" />
- </RelativeLayout>
- </LinearLayout>
|