app:layout_marginBottom 不适用于 android 约束布局
Posted
技术标签:
【中文标题】app:layout_marginBottom 不适用于 android 约束布局【英文标题】:app:layout_marginBottom is not working well with android constraint layout 【发布时间】:2017-12-09 10:10:27 【问题描述】:下面的 layout_marginBottom 是否有任何原因不起作用? 但是,如果我在第二个视图上使用 layout_marginTop 效果很好
<android.support.constraint.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_
android:layout_
android:background="#ade4ad">
<TextView
android:id="@+id/first"
android:layout_
android:layout_
app:layout_marginBottom="10dp"
android:background="#000"/>
<TextView
android:id="@+id/second"
android:layout_
android:layout_
android:background="#fff"
app:layout_constraintTop_toBottomOf="@+id/first"/>
</android.support.constraint.ConstraintLayout>
【问题讨论】:
我添加了完全相同的问题,并通过向您的第一个 textView 添加以下约束来修复它:app:layout_constraintBottomToBottomOf="@+id/second"。然后 marginBottom 运行良好 你需要有一个约束才能有一个边距。例如,对于底部边距,底部约束是必须的。其他方面也类似。 感谢 shiva,这是正确的答案。 【参考方案1】:这不是LinearLayout
或RelativeLayout
,而是ConstraintLayout
,所以你必须将Left
、Right
、Bottom
、Top
Constraint
提供给相关布局,在你的情况下你有给TextView
第一个Bottom_Top
约束到TextView
第二个。所以你可以获得两个TextView
之间的保证金。
您的布局应该如下所示。
<android.support.constraint.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_
android:layout_
android:background="#ade4ad">
<TextView
android:id="@+id/first"
android:layout_
android:layout_
android:background="#000"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintLeft_toLeftOf="parent" />
<TextView
android:id="@+id/second"
android:layout_
android:layout_
android:background="#fff"
android:layout_marginTop="10dp"
app:layout_constraintTop_toBottomOf="@+id/first"
app:layout_constraintLeft_toLeftOf="@+id/first"
app:layout_constraintRight_toRightOf="@+id/first" />
</android.support.constraint.ConstraintLayout>
【讨论】:
您的解决方案没有解释为什么第一个视图上的 android:layout_marginBottom="10dp" 不起作用(也适用于您的代码)。【参考方案2】:为了
android:layout_marginBottom="20dp"
工作得很好,你应该使用
app:layout_constraintBottom_toBottomOf="parent"
【讨论】:
如果您希望顶部和底部边距得到尊重,您必须对所有视图的顶部和底部应用约束。左右约束以及左右边距也是如此。【参考方案3】:你可以使用这个技巧,在下面创建一个空格,与父底部对齐
<Space
android:id="@+id/space"
android:layout_
android:layout_
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent" />
并在空间顶部对齐您的视图 应用程序:layout_constraintBottom_toTopOf="@+id/space" 像这样
<TextView
android:id="@+id/howNext"
style="@style/white_action_btn_no_border"
android:layout_
android:layout_
android:layout_marginBottom="8dp"
android:layout_marginEnd="8dp"
android:layout_marginStart="8dp"
android:text="@string/got_it_next"
app:layout_constraintBottom_toTopOf="@+id/space"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent" />
【讨论】:
【参考方案4】:布局顶部/底部边距仅在以下情况下有效:
-
同一方向的约束需要与其下一个邻居子节点连接,就像单向链表一样。
必须设置方向的最后一个约束。
在您的情况下,您需要为链中的每个视图设置“layout_constraintBottom_toXXXXX”,最后一个视图将底部设置为父视图。
<android.support.constraint.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_
android:layout_
android:background="#ade4ad">
<TextView
android:id="@+id/first"
android:layout_
android:layout_
app:layout_marginBottom="10dp"
app:layout_constraintBottom_toTopOf="@+id/second"
android:background="#000"/>
<TextView
android:id="@+id/second"
android:layout_
android:layout_
app:layout_marginBottom="10dp"
app:layout_constraintBottom_toTopOf="@+id/third"
android:background="#fff"/>
<TextView
android:id="@+id/third"
android:layout_
android:layout_
android:background="#fff"
app:layout_constraintBottom_toBottomOf="parent"/>
</android.support.constraint.ConstraintLayout>
此外,不需要反向依赖,除非您希望“layout_marginTop”有效。
【讨论】:
知道了。简单地说:视图的约束只尊重视图自己定义的边距。以上是关于app:layout_marginBottom 不适用于 android 约束布局的主要内容,如果未能解决你的问题,请参考以下文章