<?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:id="@+id/activity_ctrl"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
tools:context="com.hdl.sdk.ttl_sdk.activity.FreshAirActivity">
|
|
<include
|
android:id="@+id/hdl_top_bar_layout"
|
layout="@layout/hdl_toolbar_top_view_b"/>
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:layout_below="@+id/hdl_top_bar_layout"
|
android:layout_marginRight="20dp"
|
android:layout_marginLeft="20dp"
|
android:orientation="vertical">
|
|
|
<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>
|