如何将图像设置为textview的右下边缘,并使用流畅的文本?

问题描述 投票:0回答:1

我需要将图像设置到布局的右下边缘,并在其上方和左侧显示文本,但它不应与我的图像重叠:this done with constraints

我可以用限制做上面的事情。但我不想在右边或底部有空格。我也试过drawableEnd。也无法达到预期的效果。

android xml textview imageview constraints
1个回答
-1
投票

使用Relativelayout。

将这两个atts放在imageview中:

android:layout_alignParentBottom="true" android:layout_alignParentRight="true"

这两个用于Textview:

android:layout_alignTop="@+id/Imageview"
android:layout_alignParentLeft="true"
© www.soinside.com 2019 - 2024. All rights reserved.