What is the difference between linear and relative layout?

后端 未结 10 1713
無奈伤痛
無奈伤痛 2020-12-30 13:48

What is the difference between linear and relative layout?

10条回答
  •  春和景丽
    2020-12-30 14:20

    difference is simple: in LinearLayout we arrange stuff in linear manner (one after another), and in RelativeLayout we can place stuff anywhere on screen.

    => Linear Layout is arranged as a list. Rest they are similar in functionality.

提交回复
热议问题