123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout
- xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:app="http://schemas.android.com/apk/res-auto"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical"
- >
-
- <TextView
- android:id="@+id/tv_app_version"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:text="@string/version"
- android:padding="10dp"
- />
-
-
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_margin="10dp"
- >
-
- <Button
- android:id="@+id/btn_sphy"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="血压计"
- />
-
- <Button
- android:id="@+id/btn_tempgun"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="额温枪"
- />
-
- <Button
- android:id="@+id/btn_temp"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="体温计"
- />
-
- <Button
- android:id="@+id/btn_baby"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="婴儿秤"
- />
- </LinearLayout>
-
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_margin="10dp"
- >
-
- <Button
- android:id="@+id/btn_height"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="身高仪"
- />
-
-
-
- <Button
- android:id="@+id/btn_ad_weight"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="艾迪体脂秤"
- />
-
- </LinearLayout>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_margin="10dp"
- android:layout_height="wrap_content">
- <Button
- android:id="@+id/btn_wifi_ble_weight"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="WiFi+Ble体脂秤"
- />
- </LinearLayout>
-
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_margin="10dp"
- >
-
- <Button
- android:id="@+id/btn_ble"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="Ble通用设置"
- />
-
-
-
- </LinearLayout>
-
- </LinearLayout>
|