在Androidstudio中写一个xml页面上面显示“呜呜呜”并且将它居中
时间: 2024-05-03 09:16:26 浏览: 87
可以使用以下的XML代码来实现你的需求:
```xml
<?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">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:text="呜呜呜"/>
</RelativeLayout>
```
在这个XML布局中,我们使用了一个RelativeLayout来作为根布局,并且在其中添加了一个TextView。通过设置TextView的android:layout_centerInParent属性为true,我们可以让TextView在父布局中居中显示。TextView的文本内容可以通过设置android:text属性来实现。
阅读全文