12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="315dp"
- android:layout_height="wrap_content"
- android:background="@drawable/bdp_bg_white_round"
- android:orientation="vertical" >
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="120dp" >
- <ImageView
- android:id="@+id/bd_close"
- android:layout_width="15dp"
- android:layout_height="15dp"
- android:layout_alignParentRight="true"
- android:layout_alignParentTop="true"
- android:layout_marginRight="18dp"
- android:layout_marginTop="18dp"
- android:src="@drawable/bdp_icon_close_selector"
- android:visibility="gone" />
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_centerInParent="true"
- android:gravity="center"
- android:orientation="vertical" >
- <TextView
- android:id="@+id/title"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_centerInParent="true"
- android:layout_marginTop="20dp"
- android:gravity="center"
- android:text="@string/bdp_realname_auth_under_age"
- android:textColor="#333333"
- android:textSize="17sp" />
- <TextView
- android:id="@+id/content"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_margin="15dp"
- android:gravity="center"
- android:text="@string/bdp_realname_auth_tips"
- android:textColor="#ff666666"
- android:textSize="16sp" />
- </LinearLayout>
- </RelativeLayout>
- <View
- android:layout_width="match_parent"
- android:layout_height="1px"
- android:background="#cccccc" />
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="56dp" >
- <Button
- android:id="@+id/bd_ok"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_centerInParent="true"
- android:background="@drawable/bdp_color_white__without_corners_selector"
- android:text="@string/bdp_ok"
- android:textColor="#ffea0063"
- android:textSize="16sp" />
- </RelativeLayout>
- </LinearLayout>
|