张海江
2016-12-30 455b3bee444ee94b016be9d4f8ad9111f7e3c6fa
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:background="@android:color/white">
 
    <FrameLayout
        android:id="@+id/pingpp_title"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">
 
    <ImageView
        android:id="@+id/pingpp_back"
        android:layout_width="30dp"
        android:layout_height="30dp"
        android:layout_margin="5dp"
        android:src="@drawable/pingpp_back"/>
    </FrameLayout>
 
    <FrameLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_below="@id/pingpp_title">
 
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent">
 
        <com.pingplusplus.android.WebViewEx
            android:id="@+id/pingpp_webView"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            />
        </LinearLayout>
 
        <ProgressBar
            android:id="@+id/pingpp_progressbar"
            android:layout_width="50dp"
            android:layout_height="50dp"
            android:layout_gravity="center"
            android:background="@drawable/tips_bg"
            />
 
    </FrameLayout>
 
</RelativeLayout>