边距如何在ConstraintLayout中工作?

边距如何在ConstraintLayout中工作?,第1张

概述main_layout.xml:<android.support.constraint.ConstraintLayoutandroid:layout_width="match_parent"android:layout_height="wrap_content"><CollapsingTextViewandroid:layout_width="wrap_content"

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中工作?所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1092082.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-27
下一篇 2022-05-27

发表评论

登录后才能评论

评论列表(0条)

保存