xfgame_web_activity.xml 1.6 KB
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/xfgame_web_parent_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/xfgame_colorTransparent_black_80">

    <LinearLayout
        android:id="@+id/xfgame_plate_content"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_centerInParent="true"
        android:orientation="vertical">

        <FrameLayout
            android:id="@+id/xfgame_web_custom"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_weight="1.0">

            <WebView
                android:id="@+id/xfgame_web_show_url"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:layout_weight="1.0"
                android:overScrollMode="never" />

            <Button
                android:id="@+id/xfgame_btn_refresh"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_gravity="right"
                android:text="刷新"
                android:visibility="gone" />
        </FrameLayout>
    </LinearLayout>

    <FrameLayout
        android:id="@+id/xfgame_web_fullscreen"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:background="@color/xfgame_000000"
        android:visibility="gone" />

</RelativeLayout>