内
<android.support.constraint.ConstraintLayout
android:id="@+id/constraintLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="?attr/actionBarSize">
<RelativeLayout
android:id="@+id/layout_info"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:background="@color/colorPrimaryDark"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"/>
<include
layout="@layout/page"
android:layout_width="match_parent"
android:layout_height="0dp"/>
</android.support.constraint.ConstraintLayout>
は私が<include>
に制約を追加することはできませんよ。 app
名前空間は機能しません(RelativeLayout
で機能します)。自動入力は制約属性を表示しません。私は、含まれているレイアウトの高さを残りのスペースをConstraintLayout
にしたいが、どのように制約なしにそれを行うのですか?助けてください。