<?xml version="1.0" encoding="utf-8"?>
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:orientation="vertical" >
|
|
<RelativeLayout
|
android:id="@+id/xy_title_layout"
|
android:layout_width="match_parent"
|
android:layout_height="53dp"
|
android:layout_alignParentTop="true"
|
android:background="@color/yellow2" >
|
|
<TextView
|
android:id="@+id/titleTV"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_centerHorizontal="true"
|
android:layout_centerVertical="true"
|
android:text="注册协议"
|
android:textColor="@color/white"
|
android:textSize="17sp" />
|
|
<Button
|
android:id="@+id/xy_activity_help_back_btn"
|
android:layout_width="30dp"
|
android:layout_height="30dp"
|
android:layout_alignParentLeft="true"
|
android:layout_centerVertical="true"
|
android:layout_marginLeft="10dp"
|
android:background="@drawable/com_xy_login_checkback" />
|
</RelativeLayout>
|
|
|
<WebView
|
android:id="@+id/xy_activity_help_webview"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:layout_below="@+id/xy_title_layout"/>
|
</RelativeLayout>
|