Can you center a Button in RelativeLayout?

前端 未结 11 1266
粉色の甜心
粉色の甜心 2020-12-12 13:35

I\'m trying to center a button in relative layout, is this possible? I\'ve tried the Gravity and Orientation functions but they don\'t do anything.

11条回答
  •  独厮守ぢ
    2020-12-12 14:05

    To center align in one of the direction use android:layout_centerHorizontal="true" or android:layout_centerVertical="true" in the child layout

提交回复
热议问题