wxr
2023-04-11 cd70a2a8a2bdebf51259d8f39ed110a34b9be9e5
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
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/common_bg"
    android:gravity="center_horizontal"
    android:orientation="vertical" >
 
    <com.videogo.widget.TitleBar
        android:id="@+id/title_bar"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />
 
    <ImageView
        android:id="@+id/imgLineConnectGuid"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="90dp"
        android:src="@drawable/wifi_connect_tip" />
 
    <View
        android:layout_width="1dp"
        android:layout_height="0dp"
        android:layout_weight="1" />
 
    <TextView
        android:id="@+id/tvIntroduce1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:paddingLeft="20dp"
        android:paddingRight="20dp"
        android:text="@string/device_wificonfig_hasline_introduce"
        android:textColor="@color/black"
        android:textSize="@dimen/large_text_size" />
 
    <TextView
        android:id="@+id/tvIntroduce2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginBottom="50dp"
        android:layout_marginTop="30dp"
        android:paddingLeft="20dp"
        android:paddingRight="20dp"
        android:text="@string/if_your_device_has_set_time"
        android:textColor="@color/gray_text"
        android:textSize="@dimen/large_text_size" />
 
</LinearLayout>