web_activity_h5_new.xml 1.89 KB
Newer Older
konghaorui committed
1 2 3 4 5 6 7
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

8
    <com.ydl.ydlcommon.ui.LogoLoadingView
konghaorui committed
9 10 11 12 13 14 15 16 17 18
        android:id="@+id/v_loading"
        android:layout_width="match_parent"
        android:layout_height="match_parent"/>

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

19
        <com.ydl.ydlcommon.view.TitleBar
konghaorui committed
20 21 22
            android:id="@+id/tb_title"
            android:layout_width="match_parent"
            android:layout_height="@dimen/title_bar_height"
konghaorui committed
23 24
            android:background="@color/platform_white"
            app:pa_title_text="加载中" />
konghaorui committed
25

26
        <com.ydl.webview.SafeTipView
konghaorui committed
27 28 29 30 31 32 33 34 35 36 37
            android:id="@+id/safe_tip_view"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:visibility="gone"
            tools:visibility="visible" />

        <in.srain.cube.views.ptr.PtrFrameLayout
            android:id="@+id/store_house_ptr_frame"
            android:layout_width="match_parent"
            android:layout_height="match_parent">

38
            <com.ydl.webview.ProgressWebView
konghaorui committed
39 40 41
                android:id="@+id/wv_content"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
konghaorui committed
42
                android:background="@color/platform_transparent"/>
konghaorui committed
43 44 45
        </in.srain.cube.views.ptr.PtrFrameLayout>
    </LinearLayout>

46 47 48 49 50 51 52

    <ImageView
        android:id="@+id/iv_background"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:visibility="gone" />

konghaorui committed
53
</RelativeLayout>