<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" android:padding="16dp"> <EditText android:id="@+id/et_height" android:layout_width="match_parent" android:layout_height="wrap_content" android:hint="身高(米)" android:inputType="numberDecimal" /> <EditText android:id="@+id/et_weight" android:layout_width="match_parent" android:layout_height="wrap_content" android:hint="体重(千克)" android:inputType="numberDecimal" /> <Button android:id="@+id/btn_calculate" android:layout_width="match_parent" android:layout_height="wrap_content" android:text="计算BMI" /> <TextView android:id="@+id/tv_result" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginTop="16dp" android:textSize="18sp" /> </LinearLayout>
时间: 2023-12-05 10:29:58 浏览: 70
Android中的ViewPager视图滑动切换类的入门实例教程
这是一个 Android 布局文件,其中包含一个垂直方向的线性布局,内部包含两个编辑框和一个按钮,用于计算身体质量指数(BMI),还有一个用于显示结果的文本视图。其中第一个编辑框的 ID 是 et_height,用于输入身高,第二个编辑框的 ID 是 et_weight,用于输入体重,按钮的 ID 是 btn_calculate,用于触发计算 BMI 的操作,结果将在文本视图 tv_result 中显示。
阅读全文