gpt4 book ai didi

java - Android - 相对布局的ImageView中的Center Textview

转载 作者:数据小太阳 更新时间:2023-10-29 02:53:23 25 4
gpt4 key购买 nike

我有一个带有 ImageView 的相对布局,我想在 Activity 布局 xml 文件中将 TextView 置于 ImageView 的中心。

这是 ImageView ,然后是我为 TextView 尝试的内容

这是相对布局的内部:

<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:minHeight="170dp"
android:minWidth="170dp"
android:id="@+id/logoBackground"
android:layout_alignParentTop="true"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:layout_marginLeft="33dp"
android:layout_marginStart="33dp"
android:layout_marginTop="33dp"
android:contentDescription="@string/content_description_useless"
android:background="#ffffd0cd" />

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/capital_u"
android:id="@+id/textView"
android:textSize="30sp"
android:layout_alignTop="@+id/logoBackground"
android:layout_alignLeft="@+id/logoBackground"
android:layout_alignStart="@+id/logoBackground"
android:layout_marginLeft="43dp"
android:layout_marginStart="43dp"
android:layout_marginTop="65dp"/>

我认为它看起来不错,但是 marginTop 是 65 不应该是 imageView 高度的一半吗?

提前感谢您的帮助。

最佳答案

它不起作用,因为您告诉 TextView 位于父级 RelativeLayout 的中心,但 ImageView 附加到父级的左上角。

一种方法是使用 RelativeLayout 的 alignXyz 属性强制 TextView 的大小与 ImageView 的大小相同。然后将 gravity 属性设置为 center,这会使文本显示在 TextView 边界的中心。只要 ImageView 在所有维度上都大于 TextView,这应该可以工作。

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/capital_u"
android:id="@+id/textView"
android:textSize="30sp"
android:layout_alignTop="@+id/logoBackground"
android:layout_alignLeft="@+id/logoBackground"
android:layout_alignRight="@+id/logoBackground"
android:layout_alignBottom="@+id/logoBackground"
android:gravity="center"/>

这对你有用吗?

关于java - Android - 相对布局的ImageView中的Center Textview,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27327367/

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