web_activity_h5_new.xml 2.29 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">

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

徐健 committed
29 30 31 32 33
            <View
                android:id="@+id/tb_title_cover_v"
                android:layout_width="match_parent"
                android:layout_height="45dp"
                android:background="#ffffff"
YKai committed
34
                android:visibility="gone"/>
徐健 committed
35 36 37

        </RelativeLayout>

38
        <com.ydl.webview.SafeTipView
konghaorui committed
39 40 41 42 43 44 45 46 47 48 49
            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">

50
            <com.ydl.webview.ProgressWebView
konghaorui committed
51 52 53
                android:id="@+id/wv_content"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
konghaorui committed
54
                android:background="@color/platform_transparent"/>
konghaorui committed
55 56 57
        </in.srain.cube.views.ptr.PtrFrameLayout>
    </LinearLayout>

58 59 60 61 62 63 64

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

konghaorui committed
65
</RelativeLayout>