我在将ConstraintLayout放置在屏幕中央两个视图时遇到了问题。就像标题和内容一样。两者都应垂直居中。所以我的布局看起来像:
<?xml version=“1.0” encoding=“utf-8"?>
<androidx.constraintlayout.widget.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”>
<TextView
android:id=“@+id/title”
android:layout_width=“0dp”
android:layout_height=“wrap_content”
android:text=“Title”
android:textAppearance=“@style/Title1"
app:layout_constraintBottom_toTopOf=“@id/content”
app:layout_constraintEnd_toEndOf=“parent”
app:layout_constraintStart_toStartOf=“parent”
app:layout_constraintTop_toTopOf=“parent”
app:layout_constraintVertical_chainStyle=“packed” />
<EditText
android:id=“@+id/content”
android:layout_width=“match_parent”
android:layout_height=“wrap_content”
android:inputType=“text|textMultiLine|textNoSuggestions”
android:textAppearance=“@style/Title4"
app:layout_constraintBottom_toBottomOf=“parent”
app:layout_constraintEnd_toEndOf=“parent”
app:layout_constraintStart_toStartOf=“parent”
app:layout_constraintTop_toBottomOf=“@id/title”
tools:text=“body\nbody\nbody\nbody\nbody\nbody\nbody\nbody\nbody\nbody\nbody\nbody\nbody\nbody\nbody\nbody\nbody\nbody\nbody\nbody\nbody\nbody\nbody\nbody\nbody\nbody\nbody\nbody\nbody\nbody\nbody\nbody\nbody\nbody\nbody\nbody\nbody\nbody\nbody\nbody\n” />
</androidx.constraintlayout.widget.ConstraintLayout>
答案 0 :(得分:4)
默认情况下,为内容设置了Views
的{{1}}不会因内容太大而无法满足其约束。要更改此行为并限制尺寸,您需要为wrap_content
设置app:layout_constrainedHeight="true"
。
作为旁注,您还应避免按照documentation中所述,对EditText
中包含的match_parent
使用Views
。