main_layout.xml:
<androID.support.constraint.ConstraintLayout androID:layout_wIDth="match_parent" androID:layout_height="wrap_content"> <CollapsingTextVIEw androID:layout_wIDth="wrap_content" androID:layout_height="wrap_content" androID:layout_marginEnd="16dp" androID:layout_marginStart="16dp" androID:layout_margintop="8dp" androID:textSize="16sp" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintStart_toStartOf="parent" app:layout_constrainttop_totopOf="parent" /></androID.support.constraint.ConstraintLayout>
看起来好像绑定到边缘ConstraintLayout不考虑任何水平边距,而只是将TextVIEw水平居中
解决方法:
那是因为您将TextVIEw的宽度设置为“ wrap_content”.
为了使它适应约束,您需要使用“ 0dp”宽度.这是“ match_constraint”的功能等效项,但是当前未被识别为选项.
总结以上是内存溢出为你收集整理的边距如何在ConstraintLayout中工作?全部内容,希望文章能够帮你解决边距如何在ConstraintLayout中工作?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)