How to center a View inside of an Android Layout?

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

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

10条回答
  •  独厮守ぢ
    2020-12-07 18:48

    I was able to center a view using

    android:layout_centerHorizontal="true" 
    

    and

    android:layout_centerVertical="true" 
    

    params.

提交回复
热议问题