confide_webview.xml 1.94 KB
Newer Older
霍志良 committed
1 2 3
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
4
    android:background="@color/white"
万齐军 committed
5
    android:layout_height="match_parent">
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        android:id="@+id/rl_title"
        android:layout_marginLeft="@dimen/platform_dp_20"
        android:layout_marginRight="@dimen/platform_dp_20"
        >
        <ImageView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:src="@drawable/confide_close_icon"
            android:id="@+id/close_webview_Icon"
            android:visibility="gone"
            android:layout_marginTop="@dimen/platform_dp_28"
            android:layout_centerVertical="true"
            >

        </ImageView>
万齐军 committed
25

26
        <TextView
万齐军 committed
27
            android:id="@+id/text_title"
28 29 30
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerInParent="true"
万齐军 committed
31 32 33 34
            android:text=""
            android:textColor="@color/black"
            android:textSize="18dp"
            android:visibility="gone">
35 36 37 38 39 40 41 42 43
        </TextView>
        <View
            android:layout_width="@dimen/platform_dp_36"
            android:layout_height="@dimen/platform_dp_6"
            android:background="@drawable/confide_bottom_line"
            android:id="@+id/line"
            android:layout_marginTop="@dimen/platform_dp_12"
            android:layout_centerInParent="true"
            >
霍志良 committed
44

45 46
        </View>
    </RelativeLayout>
霍志良 committed
47 48 49 50
    <com.ydl.webview.ProgressWebView
        android:id="@+id/wv_content"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
51
        android:background="@color/white"
52 53
        android:layout_below="@id/rl_title"
        />
霍志良 committed
54 55

</RelativeLayout>