What is the difference between gravity and layout_gravity in Android?

前端 未结 20 1690
庸人自扰
庸人自扰 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:12

    The difference

    android:layout_gravity is the Outside gravity of the View. Specifies the direction in which the View should touch its parent's border.

    android:gravity is the Inside gravity of that View. Specifies in which direction its contents should align.

    HTML/CSS Equivalents

    Android                 | CSS
    ————————————————————————+————————————
    android:layout_gravity  | float
    android:gravity         | text-align
    

    Easy trick to help you remember

    Take layout-gravity as "Lay-outside-gravity".

提交回复
热议问题