<?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="match_parent"
|
android:orientation="vertical"
|
android:background="@color/background" >
|
|
|
<RelativeLayout
|
android:id="@+id/webTitleLayout"
|
android:layout_width="match_parent"
|
android:layout_height="48dp"
|
android:gravity="center_vertical" >
|
|
<ImageView
|
android:id="@+id/iv_back"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_alignParentLeft="true"
|
android:layout_centerVertical="true"
|
android:src="@drawable/mg_float_back" />
|
|
<TextView
|
android:id="@+id/title"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_centerInParent="true"
|
android:text=""
|
android:textColor="@color/text_4c"
|
android:textSize="16sp" />
|
|
<TextView
|
android:id="@+id/go_game"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_alignParentRight="true"
|
android:layout_centerVertical="true"
|
android:layout_marginRight="12dp"
|
android:background="@drawable/xy_quick_login_save_bg"
|
android:gravity="center"
|
android:padding="6dp"
|
android:text="回到游戏"
|
android:textColor="@color/white"
|
android:textSize="12sp" />
|
</RelativeLayout>
|
|
<ImageView
|
android:layout_width="match_parent"
|
android:layout_height="0.5dp"
|
android:src="@color/text_999" />
|
|
<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"/>
|
</LinearLayout>
|