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
<?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:background="@drawable/wifi_config_bg"
    android:orientation="vertical">
 
    <ezviz.ezopensdkcommon.common.TitleBar
        android:id="@+id/title_bar"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />
 
    <LinearLayout
        android:layout_width="300dp"
        android:layout_height="wrap_content"
        android:orientation="vertical"
        android:layout_gravity="center_horizontal"
        android:layout_marginTop="50dp"
        android:layout_marginBottom="50dp"
        android:layout_centerInParent="true">
 
        <Button
            android:id="@+id/btn_to_ap"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="@string/string_ap_connection"/>
 
        <Button
            android:id="@+id/btn_to_smart_config"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="@string/string_smart_connection"
            android:layout_marginTop="20dp"/>
 
        <Button
            android:id="@+id/btn_to_sound_wave"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="@string/string_sound_wave_connection"
            android:layout_marginTop="20dp"/>
 
    </LinearLayout>
 
</RelativeLayout>