gt3_ll_geetest_view.xml
2.3 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
<?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="wrap_content">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<com.geetest.sdk.views.GT3GeetestView
android:id="@+id/geetest_view"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:layout_weight="1" />
<LinearLayout
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:layout_weight="4"
android:orientation="horizontal">
<TextView
android:id="@+id/tv_test_geetest"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/gt3_geetest_click"
android:textColor="#FF383838"
android:textSize="14sp" />
<TextView
android:id="@+id/tv_test_geetest_cof"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="4dp"
android:text="@string/gt3_geetest_try_again"
android:textColor="#FF3873FF"
android:textSize="14sp"
android:visibility="gone" />
</LinearLayout>
<ImageView
android:id="@+id/iv_geetest_logo"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:layout_weight="1" />
</LinearLayout>
<TextView
android:id="@+id/tv_test_geetest_cord"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
android:layout_marginBottom="1dp"
android:layout_marginRight="3dp"
android:text="100"
android:textColor="#FFAFBBBF"
android:textSize="10sp"
android:visibility="gone" />
</RelativeLayout>