123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="260dp"
- android:layout_height="160dp"
- android:background="@drawable/bdp_bg_white_round"
- android:orientation="vertical" >
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="110dp" >
- <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/txtTitle"
- 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/txtContent"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_alignTop="@id/txtTitle"
- android:layout_centerInParent="true"
- android:layout_marginTop="28dp"
- 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>
|