hc
2024-12-19 9370bb92b2d16684ee45cf24e879c93c509162da
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
<android.support.constraint.ConstraintLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/container_frame"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/colorWhite"
    android:orientation="vertical">
 
    <Button
        android:id="@+id/fragment_activity_rockhome_blue_bt_search"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:background="@drawable/bt_shape"
        android:layout_margin="20dp"
        app:layout_constraintBottom_toBottomOf="parent"
        android:text="@string/blue_start_lescan" />
 
    <include
        android:id="@+id/fragment_activity_rockhome_blue_ll_guide"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_margin="20dp"
        app:layout_constraintBottom_toTopOf="@id/search_devices"
        layout="@layout/fragment_activity_rockhome_blue_guide" />
 
    <include
        android:id="@+id/fragment_activity_rockhome_blue_ll_deviceList"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_margin="20dp"
        app:layout_constraintBottom_toTopOf="@id/search_devices"
        layout="@layout/fragment_activity_rockhome_blue_devicelist"
        android:visibility="gone"/>
 
    <include
        android:id="@+id/fragment_activity_rockhome_blue_ll_nodevice"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_margin="20dp"
        app:layout_constraintBottom_toTopOf="@id/search_devices"
        layout="@layout/fragment_activity_rockhome_blue_nodevice"
        android:visibility="gone"/>
 
    <include
        android:id="@+id/fragment_activity_rockhome_blue_ll_wifi"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_margin="20dp"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintBottom_toTopOf="parent"
        app:layout_constraintTop_toBottomOf="parent"
        layout="@layout/fragment_activity_rockhome_blue_wifi"
        android:visibility="gone"/>
 
</android.support.constraint.ConstraintLayout>