forked from Tencent/APIJSON
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathweb_view_activity.xml
More file actions
executable file
·38 lines (31 loc) · 1.25 KB
/
Copy pathweb_view_activity.xml
File metadata and controls
executable file
·38 lines (31 loc) · 1.25 KB
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
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/llWebView"
style="@style/activity_page" >
<RelativeLayout style="@style/topbar_bg" >
<ImageView
android:id="@+id/imageView1"
style="@style/topbar_return_img" />
<TextView
style="@style/topbar_title"
android:layout_centerHorizontal="true"
android:ellipsize="none"
android:padding="0dp"
android:layout_marginLeft="@dimen/topbar_title_padding"
android:layout_marginRight="@dimen/topbar_title_padding"
android:singleLine="true"
android:text="网页" />
</RelativeLayout>
<RelativeLayout style="@style/match_match" >
<WebView
android:id="@+id/wvWebView"
style="@style/match_match" />
<ProgressBar
android:id="@+id/pbWebView"
style="?android:attr/progressBarStyleHorizontal"
android:layout_width="match_parent"
android:layout_height="2dp"
android:layout_alignParentTop="true"
android:progressDrawable="@drawable/progress_color_horizontal" />
</RelativeLayout>
</LinearLayout>