What is the difference between gravity and layout_gravity in Android?

前端 未结 20 1206
庸人自扰
庸人自扰 2020-11-21 11:41

I know we can set the following values to the android:gravity and android:layout_gravity properties:

    <
20条回答
  •  梦谈多话
    2020-11-21 12:06

    Their names should help you:

    • android:gravity sets the gravity of the contents (i.e. its subviews) of the View it's used on.
    • android:layout_gravity sets the gravity of the View or Layout relative to its parent.

    And an example is here.

提交回复
热议问题