安卓图片右对齐文字左对齐
时间: 2023-09-24 17:12:03
浏览: 81
可以通过使用 Rel[ati](https://geek.csdn.net/educolumn/150d7073277950db5f09620704e791cf?spm=1055.2569.3001.10083)veLayout 或 ConstraintLayout 来实现[安卓](https://geek.csdn.net/educolumn/030313eb5d1155bdc74a5628bca8c2cb?spm=1055.2569.3001.10083)图片右对齐文字左对齐的效果。
使用 Rel[ati](https://geek.csdn.net/educolumn/150d7073277950db5f09620704e791cf?spm=1055.2569.3001.10083)veLayout:
```xml
<Rel[ati](https://geek.csdn.net/educolumn/150d7073277950db5f09620704e791cf?spm=1055.2569.3001.10083)veLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<ImageView
android:id="@+id/imageView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:src="@drawable/your_image" />
<TextView
android:id="@+id/textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toLeftOf="@id/imageView"
android:text="Your Text" />
</Rel[ati](https://geek.csdn.net/educolumn/150d7073277950db5f09620704e791cf?spm=1055.2569.3001.10083)veLayout>
```