如何在android中的相对布局中将一张图像放置在另一张图像的角落?

发布于 2024-12-06 10:07:04 字数 146 浏览 1 评论 0原文

我有两个图像。图A是一个矩形,图B是一个圆形。我希望图像 B 位于图像 A 的右下角 - 1/4 位于图像 A 内部,另外 3/4 位于图像 A 外部。

我不知道如何使用我的 Android 应用程序的相对布局来做到这一点。有什么帮助吗?

谢谢。

I have two images. image A is a rectangle one and image B is a circular one. I want image B to be at the lower right corner of image A - 1/4th of it inside image A and the other 3/4th of it outside.

I am not sure how to do this using relative layout for my android app. Any help ?

Thanks.

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

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

发布评论

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

评论(1

爱她像谁 2024-12-13 10:07:04

这段代码可能对你有帮助。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
 android:layout_width="wrap_content"
 android:layout_height="wrap_content"
 android:orientation="vertical">
 <ImageView
  android:id="@+id/imagepart"
  android:layout_width="72dp"
  android:layout_height="72dp"
  android:scaleType="centerCrop"
  android:adjustViewBounds="true"
  />


  <ImageView android:id="@+id/imgOnlinePart" android:layout_width="wrap_content" 
             android:layout_height="wrap_content" android:layout_alignParentLeft="true"
             android:layout_alignBottom="@+id/imagepart" android:src="@drawable/online"/>
</RelativeLayout>

this code may help you.

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
 android:layout_width="wrap_content"
 android:layout_height="wrap_content"
 android:orientation="vertical">
 <ImageView
  android:id="@+id/imagepart"
  android:layout_width="72dp"
  android:layout_height="72dp"
  android:scaleType="centerCrop"
  android:adjustViewBounds="true"
  />


  <ImageView android:id="@+id/imgOnlinePart" android:layout_width="wrap_content" 
             android:layout_height="wrap_content" android:layout_alignParentLeft="true"
             android:layout_alignBottom="@+id/imagepart" android:src="@drawable/online"/>
</RelativeLayout>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文