JLChen
2020-01-18 fd78a0c0e444b83f40a9225c98adceb87bbda329
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
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="com.hdl.sdk.hdl_sdk.activity.FreshAirActivity">
 
    <LinearLayout
        android:id="@+id/ll_geothermal"
        android:orientation="vertical"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">
 
        <Button
            android:id="@+id/btn_switch"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="地热开关" />
        <Button
            android:id="@+id/btn_mode"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="地热模式" />
 
 
        <LinearLayout
            android:orientation="horizontal"
            android:layout_width="match_parent"
            android:layout_height="50dp"
            android:focusable="true"
            android:focusableInTouchMode="true">
            <Button
                android:id="@+id/btn_temp"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="点击设置地热温度:" />
            <EditText
                android:id="@+id/et_temp"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:inputType="number"
                />
 
 
        </LinearLayout>
        <TextView
            android:id="@+id/tv_geothermal"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginTop="10dp"
            android:textSize="25sp"
            android:text="这个按钮做地热模块的演示" />
 
 
 
    </LinearLayout>
 
 
</RelativeLayout>