Android relative layout align parent right

≯℡__Kan透↙ 提交于 2019-12-04 22:51:31
Flynn81

Try android:layout_centerInParent="true" and remove the alignParentLeft attribute if you want the image centered in your layout.

If you only want to align it to the right, just use android:layout_alignParentRight="true".

<ImageView
    android:id="@+id/main_imgBreachAlert"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentRight="true"
    android:layout_marginRight="5dp" />
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!