android布局知识点
1、gravity和layout_gravity区别:
gravity是设置自身内部元素的对齐方式。比如一个TextView,则是设置内部文字的对齐方式。如果是ViewGroup组件如LinearLayout的话,则为设置它内部view组件的对齐方式。
layout_gravity是设置自身相对于父容器的对齐方式。比如,一个TextView设置layout_gravity属性,则表示这TextView相对于父容器的对齐方式。
2、This view is not constrained vertically: at runtime it will jump to the top unless you add a vertical constraint less…
在ConstraintLayout中,检查一下ConstraintLayout中的约束条件是否完整,所谓的完整就是水平和垂直的约束都要有,故加上水平和垂直设置。
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
(对ConstraintLayout的详细讲解参见:https://www.cnblogs.com/angrycode/p/9739513.html)
3、