<?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent"> <Button android:id="@+id/btnDataMonitoring" android:layout_width="150dp" android:layout_height="150dp" android:layout_marginStart="50dp" android:layout_marginTop="50dp" android:background="@drawable/oval_button" android:text="数据监控" android:textColor="#FFFFFF" android:textSize="16sp" android:textStyle="bold" /> <Button android:id="@+id/btnHistory" android:layout_width="150dp" android:layout_height="150dp" android:layout_marginEnd="50dp" android:layout_marginTop="50dp" android:layout_toEndOf="@id/btnDataMonitoring" android:background="@drawable/oval_button" android:text="历史记录" android:textColor="#FFFFFF" android:textSize="16sp" android:textStyle="bold" />
时间: 2023-06-26 15:08:31 浏览: 250
android的xml布局
这是一个基于XML语言的Android应用布局文件,包含一个RelativeLayout布局容器和两个Button控件。第一个Button的id为"btnDataMonitoring",宽高为150dp,距离左边缘50dp,上边缘50dp,背景为一个圆形按钮,文本为"数据监控",字体颜色为白色,字体大小为16sp,字体加粗。第二个Button的id为"btnHistory",宽高为150dp,距离右边缘50dp,上边缘50dp,相对于第一个Button居中对齐,背景为一个圆形按钮,文本为"历史记录",字体颜色为白色,字体大小为16sp,字体加粗。
阅读全文