wangguan
2020-12-26 e371272a7885723c7b0ef31a20ae5d0fbead1d30
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
121
122
123
124
125
126
127
128
129
130
<?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:gravity="center"
    android:background="@null"
    >
 
 
  <LinearLayout
      android:id="@+id/tab"
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:layout_gravity="bottom"
      android:background="@color/bjskres_bg_sdk"
      android:gravity="center"
      android:orientation="horizontal"
      android:padding="5dip"
      android:layout_alignParentBottom="true"
 
      >
 
    <ImageView android:id="@+id/playwww_help"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/bjskres_web_help"
        android:gravity="center"
        android:layout_weight="1"
        android:visibility="gone"
        />
    <ImageView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/bjskres_web_pre"
        android:gravity="center"
        android:layout_weight="1"
        android:visibility="gone"
        />
    <ImageView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/bjskres_web_next"
        android:gravity="center"
        android:layout_weight="1"
        android:visibility="gone"
        />
 
    <ImageView android:id="@+id/playwww_refresh"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/bjskres_web_refresh"
        android:gravity="center"
        android:layout_weight="1"
        />
    <ImageView android:id="@+id/playwww_close"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/bjskres_web_close"
        android:gravity="center"
        android:layout_weight="1"
 
        />
  </LinearLayout>
 
 
  <LinearLayout
      android:id="@+id/tabRight"
      android:layout_width="wrap_content"
      android:layout_height="match_parent"
      android:layout_gravity="right"
      android:background="@color/bjskres_bg_sdk"
      android:gravity="center"
      android:orientation="vertical"
      android:padding="5dip"
      android:layout_alignParentEnd="true"
      >
 
    <ImageView android:id="@+id/playwww_help_right"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/bjskres_web_help"
        android:gravity="center"
        android:layout_weight="1"
        android:visibility="gone"
        />
    <ImageView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/bjskres_web_pre"
        android:gravity="center"
        android:layout_weight="1"
        android:visibility="gone"
        />
    <ImageView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/bjskres_web_next"
        android:gravity="center"
        android:layout_weight="1"
        android:visibility="gone"
        />
 
    <ImageView android:id="@+id/playwww_refresh_right"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/bjskres_web_refresh"
        android:gravity="center"
        android:layout_weight="1"
        />
    <ImageView android:id="@+id/playwww_close_right"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/bjskres_web_close"
        android:gravity="center"
        android:layout_weight="1"
 
        />
  </LinearLayout>
 
  <com.bjsk.sdk.framework.web.webview.WebViewBase
      android:id="@+id/content"
      android:layout_width="match_parent"
      android:layout_height="match_parent"
      android:background="@null"
      android:layout_alignParentTop="true"
      android:layout_above="@+id/tab"
      />
 
 
</RelativeLayout>