html5_custom_screen.xml
4.64 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">
<FrameLayout
android:id="@+id/fullscreen_custom_content"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/black"
android:visibility="gone" />
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<LinearLayout
android:id="@+id/error_console"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" />
<include
android:id="@+id/action_bar_layout"
layout="@layout/actionbar_search_back"
android:layout_width="match_parent"
android:layout_height="48dp"
android:layout_alignParentTop="true" />
<ProgressBar
android:id="@+id/webview_progressbar"
style="?android:attr/progressBarStyleHorizontal"
android:layout_width="match_parent"
android:layout_height="2dp"
android:layout_below="@+id/action_bar_layout"
android:focusable="false"
android:max="100"
android:progress="100"
android:progressDrawable="@drawable/downloading_progress_bar" />
<FrameLayout
android:id="@+id/main_content"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above="@+id/controller"
android:layout_below="@+id/webview_progressbar" />
<Button
android:id="@+id/error_button"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/action_bar_layout"
android:layout_marginBottom="42dp"
android:background="@drawable/click_refresh"
android:visibility="gone" />
<RelativeLayout
android:id="@+id/controller"
android:layout_width="match_parent"
android:layout_height="44dp"
android:layout_alignParentBottom="true"
android:background="@android:color/white"
android:orientation="horizontal">
<View
android:id="@+id/web_line"
android:layout_width="match_parent"
android:layout_height="1px"
android:layout_alignParentTop="true"
android:background="@color/gray_line_color" />
<ImageButton
android:id="@+id/btn_back"
android:layout_width="30dp"
android:layout_height="30dp"
android:layout_centerVertical="true"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:background="@drawable/web_btn_back"
android:contentDescription="@null" />
<ImageButton
android:id="@+id/btn_forward"
android:layout_width="30dp"
android:layout_height="30dp"
android:layout_centerVertical="true"
android:layout_marginLeft="5dp"
android:layout_marginRight="5dp"
android:layout_toRightOf="@+id/btn_back"
android:background="@drawable/web_btn_forward"
android:contentDescription="@null" />
<ImageButton
android:id="@+id/btn_refresh"
android:layout_width="30dp"
android:layout_height="30dp"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:layout_marginLeft="10dp"
android:layout_marginRight="60dp"
android:background="@drawable/web_btn_refresh"
android:contentDescription="@null" />
<ImageButton
android:id="@+id/btn_close"
android:layout_width="30dp"
android:layout_height="30dp"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:background="@drawable/web_btn_close_news"
android:contentDescription="@null"
android:visibility="gone"/>
</RelativeLayout>
</RelativeLayout>
</FrameLayout>