How to center the content inside a linear layout?

前端 未结 6 1996
无人共我
无人共我 2020-12-04 08:07

I\'m trying to center an ImageView inside a LinearLayout horizontally and vertically, but I just can\'t do it. The main reason why I\'m not using a

6条回答
  •  攒了一身酷
    2020-12-04 08:50

    android:gravity can be used on a Layout to align its children.

    android:layout_gravity can be used on any view to align itself in its parent.

    NOTE: If self or children is not centering as expected, check if width/height is match_parent and change to something else

提交回复
热议问题