How to center a View inside of an Android Layout?

后端 未结 10 1436
深忆病人
深忆病人 2020-12-07 18:18

I want to put a layout in the center of the screen.

10条回答
  •  温柔的废话
    2020-12-07 18:58

    Updated answer: Constraint Layout

    It seems that the trend in Android now is to use a Constraint layout. Although it is simple enough to center a view using a RelativeLayout (as other answers have shown), the ConstraintLayout is more powerful than the RelativeLayout for more complex layouts. So it is worth learning how do do now.

    To center a view, just drag the handles to all four sides of the parent.

提交回复
热议问题