<?xml version="1.0" encoding="utf-8"?>
<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_width="match_parent"
android:layout_height="match_parent"
android:padding="10dp"
tools:backgroundTint="#ff00ffff">
<View
android:id="@+id/spc_core_t"
android:layout_width="match_parent"
android:layout_height="0dp"
android:background="#ff00ff00"
app:layout_constraintBottom_toTopOf="@+id/spc_core"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_weight="1" />
<View
android:id="@+id/spc_core_b"
android:layout_width="match_parent"
android:layout_height="0dp"
android:background="#ff0000ff"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintTop_toBottomOf="@+id/spc_core"
app:layout_constraintVertical_weight="1" />
<View
android:id="@+id/spc_core"
android:layout_width="wrap_content"
android:layout_height="0dp"
android:background="#ffff0000"
app:layout_constraintBottom_toTopOf="@+id/spc_core_b"
app:layout_constraintTop_toBottomOf="@+id/spc_core_t"
app:layout_constraintVertical_weight="6" />
</android.support.constraint.ConstraintLayout>
app:layout_constraintVertical_weight
更改为其他值时,一切正常。但现在我想知道为什么会这样。
答案 0 :(得分:0)
我不知道为什么这种情况正在发生,但是当我使用约束布局库的1.0.2版本时,我能够重现它。但是,我不能够使用库的1.1.0版重现它。
将build.gradle文件更改为使用版本1.1.0:
compile 'com.android.support.constraint:constraint-layout:1.1.0-beta4'