gpt4 book ai didi

java - 在 Android 中使用 9 补丁水平和/或垂直居中

转载 作者:搜寻专家 更新时间:2023-11-01 09:06:36 27 4
gpt4 key购买 nike

我找不到一个话题来谈论我的问题,这在我看来是标准的……这让我觉得这是不可能的。但我试一试。

我有一个带有 9 个补丁背景的 RelativeLayout(其中包含一个内容区域)。

是否可以相对于内容区域在此 RelativeLayout 内水平和/或垂直居中 TextView ?

最佳答案

这个布局文件将完成任务

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/background"
android:gravity="center" >

<TextView
android:id="@+id/txtTest"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Test TextView"
android:textColor="#000000" >
</TextView>

</RelativeLayout>

我使用的9-patch图像是

enter image description here

关于java - 在 Android 中使用 9 补丁水平和/或垂直居中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11502005/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com