将底部元素定位在垂直中心

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

我试图搜索到处但没有。

RelativeLayout中没有任何问题可以将任何东西放在中心位置

android:gravity="center_horizontal|center_vertical"

但我想将我的buttonimage底部放在中心,使它位于中心线上方..

enter image description here

如何对任何尺寸的屏幕和按钮进行此操作,或者我必须知道按钮大小?

android layout position center
1个回答
-1
投票

使用以下代码

<ImageButton
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerInParent="true"/>
© www.soinside.com 2019 - 2024. All rights reserved.