将 TextView 放在 ImageView 的中心?

发布于 2024-12-10 13:42:43 字数 82 浏览 0 评论 0原文

我有一个比 TextView 大的 ImageView,我想将 TextView 垂直和水平居中于 ImageView 的顶部。
我该怎么做?

I have an ImageView that is bigger than a TextView, and I want to center the TextView on top of the ImageView, both vertically and horizontally.
How can I do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

酒浓于脸红 2024-12-17 13:42:43

将两者包装在RelativeLayout 中,并为TextView 提供相对于ImageView 所需的布局参数。

Wrap both in a RelativeLayout and give TextView the desired layout parameters with respect to the ImageView.

我很OK 2024-12-17 13:42:43

您可以将 textview 放在布局中的 imageview 之后,并给它负边距

android:layout_marginTop="-10px"
android:layout_marginLeft="-10px"

或者你可以只使用文本视图并给它一个可绘制的背景

You could put the textview after the imageview in the layout and give it negative margins

android:layout_marginTop="-10px"
android:layout_marginLeft="-10px"

or you could just use a text view and give it a drawable background

浮生未歇 2024-12-17 13:42:43

使用 FrameLayout 将它们居中:

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="40dp"
    android:layout_height="40dp">

    <ImageView
        android:id="@+id/marker_image"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        tools:src="@drawable/asphalt_ic_selected" />

    <TextView
        android:id="@+id/marker_title"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_gravity="center"
        android:gravity="center"
        android:textColor="#fff"
        android:textSize="14sp"
        tools:text="A" />

</FrameLayout>

Use a FrameLayout to center both of them:

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="40dp"
    android:layout_height="40dp">

    <ImageView
        android:id="@+id/marker_image"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        tools:src="@drawable/asphalt_ic_selected" />

    <TextView
        android:id="@+id/marker_title"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_gravity="center"
        android:gravity="center"
        android:textColor="#fff"
        android:textSize="14sp"
        tools:text="A" />

</FrameLayout>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文