<?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>
|