external_browser_activity.xml
1.38 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
39
40
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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"
android:orientation="vertical"
tools:context=".ui.activity.ExternalBrowserActivity">
<com.hjq.bar.TitleBar
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:childPaddingVertical="@dimen/dp_5"
app:rightIconHeight="@dimen/dp_20"
app:title="@string/web_title" />
<ProgressBar
android:id="@+id/pb_browser_progress"
style="?android:attr/progressBarStyleHorizontal"
android:layout_width="match_parent"
android:layout_height="@dimen/dp_3"
android:progressDrawable="@drawable/progress_gradient_bg"
android:visibility="gone" />
<com.studymachine.www.widget.StatusLayout
android:id="@+id/hl_browser_hint"
android:layout_width="match_parent"
android:layout_height="match_parent">
<com.studymachine.www.widget.BrowserView
android:id="@+id/wv_browser_view"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</com.studymachine.www.widget.StatusLayout>
</LinearLayout>