guibei_float_web.xml
1.4 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
<?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:layout_gravity="center">
<LinearLayout
android:layout_marginBottom="40dp"
android:layout_marginTop="40dp"
android:layout_width="300dp"
android:layout_height="wrap_content"
android:orientation="vertical"
android:layout_centerVertical="true"
android:layout_centerHorizontal="true">
<include layout="@layout/guibei_common_top"/>
<View
android:id="@+id/guibei_top_divider"
android:layout_width="match_parent"
android:layout_height="1px"
android:background="#dddddd"
/>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/guibei_security_bg"
>
<ProgressBar
android:id="@+id/lb_myProgressBar"
style="?android:attr/progressBarStyleHorizontal"
android:layout_width="300dp"
android:layout_height="2.0dp"
android:progressDrawable="@drawable/guibei_progress_bg"
android:indeterminateOnly="false"
android:layout_centerHorizontal="true"
android:max="100"/>
<com.guibei.sdk.component.CornersWebView
android:id="@+id/lb_content_wv"
android:layout_width="300dp"
android:layout_height="match_parent" />
</RelativeLayout>
</LinearLayout>
</RelativeLayout>