Can you center a Button in RelativeLayout?

前端 未结 11 1268
粉色の甜心
粉色の甜心 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:18

    you must have aligned it to left or right of parent view

    don't use any of these when using android:centerInParent="true" codes:-

    android:layout_alignParentLeft="true"

    android:layout_alignParentLeft="true"

    android:layout_alignRight=""

    etc.

提交回复
热议问题