将底部元素定位在垂直中心
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了将底部元素定位在垂直中心相关的知识,希望对你有一定的参考价值。
我试图搜索到处但没有。
RelativeLayout中没有任何问题可以将任何东西放在中心位置
android:gravity="center_horizontal|center_vertical"
但我想将我的buttonimage底部放在中心,使它位于中心线上方..
如何对任何尺寸的屏幕和按钮进行此操作,或者我必须知道按钮大小?
答案
使用以下代码
<ImageButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"/>
以上是关于将底部元素定位在垂直中心的主要内容,如果未能解决你的问题,请参考以下文章