将 View 定位在 ImageView 内的 Drawable 之上

Posted

技术标签:

【中文标题】将 View 定位在 ImageView 内的 Drawable 之上【英文标题】:Position View on top of Drawable inside ImageView 【发布时间】:2015-04-03 22:00:43 【问题描述】:

我有一个像这样的 ImageView:

        <ImageView
        android:layout_
        android:layout_
        android:adjustViewBounds="true"
        android:scaleType="fitCenter"/>

这会将每个图像拉伸到最大宽度或高度,具体取决于宽度和高度的可绘制比例。

ImageView 占据整个屏幕,但实际 Image 没有。我想在该 ImageView 之上放置一个视图。视图应始终位于 ImageView 内可绘制对象顶部的右上角。

如果我只是将重力放在该视图的右侧,它将始终位于 ImageView 的右侧,而不是位于 ImageView 内的可绘制对象的顶部。

有什么想法吗?谢谢。

【问题讨论】:

【参考方案1】:

您可以使用任何您喜欢的尺寸,包括使用wrap_contentfill_parentmatch_parent

<FrameLayout
    android:layout_
    android:layout_>

    <ImageView
        android:layout_
        android:layout_ />

    <ImageView
        android:layout_
        android:layout_
        android:layout_gravity="end|bottom"
        android:gravity="center|bottom" />

</FrameLayout>

【讨论】:

【参考方案2】:

您可以使用以下代码在右上角显示图像...

<RelativeLayout 
    android:layout_
    android:layout_ >

      <ImageView
    android:layout_
    android:layout_
    android:layout_alignParentRight="true"
    android:layout_alignParentTop="true"/>

</RelativeLayout>

【讨论】:

以上是关于将 View 定位在 ImageView 内的 Drawable 之上的主要内容,如果未能解决你的问题,请参考以下文章

如何将imageview内的图像移动到imageView的上端?

如何在确保 UIView 的内容在其框架内的同时将 UIview 添加到 imageView?

实现一个随着内容多少而拉伸的view

如何在 Kotlin 中将 View 转换为 Imageview [重复]

带圆角的 CardView 内的 ImageView 绘制不正确

UITableViewCell 中的固定大小的 imageView 或固定的文本定位?