<?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_fresh_air"
|
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_speed"
|
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="新风系统模式" />
|
|
<TextView
|
android:id="@+id/tv_fresh_air"
|
android:textSize="25sp"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="这个按钮做空调面板的演示"
|
|
/>
|
|
|
|
|
</LinearLayout>
|
|
</RelativeLayout>
|