guild_float_webview.xml 1.6 KB
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/guild_float_closeout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <RelativeLayout
        android:id="@+id/guild_float_webview_layout"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="#fcfcfc"
        android:orientation="vertical">

        <ImageView
            android:id="@+id/guild_float_webview_load"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:adjustViewBounds="true"
            android:src="@drawable/fancyservice_loading"
            android:contentDescription="@string/guild_img_des"
            android:scaleType="center"
            android:visibility="gone"/>
        <!--暂时隐藏闪屏页-->
        
        <WebView
            android:id="@+id/guild_float_webview_page"
            android:layout_width="match_parent"
            android:layout_height="match_parent" />
    
        <ProgressBar
            android:id="@+id/fancy_progress_loading"
            android:layout_width="80dp"
            android:layout_height="80dp"
            android:layout_gravity="center"
            android:layout_centerInParent="true"
            android:background="@color/guild_color_white"
            android:indeterminateBehavior="repeat"
            android:indeterminateDrawable="@drawable/fancy_loading"/>

    </RelativeLayout>

</RelativeLayout>