如何使iamgeview 位于右下角
时间: 2023-06-06 12:06:32 浏览: 69
左右翻转的ImageView
可以使用布局文件来实现。首先在布局文件中定义一个 FrameLayout,然后在其中添加一个 ImageView。最后设置 ImageView 的 gravity 属性为 right|bottom 即可使其显示在右下角。例如:
```
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<!-- 其他视图 -->
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/your_image"
android:layout_gravity="right|bottom" />
</FrameLayout>
```
阅读全文