在 ConstraintLayout 中移位的链式视图
Chained view displaced in ConstraintLayout
我在将 2 个视图简单地放置在屏幕中央时遇到了 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>
但是当Content growth Title被移出屏幕边界时。它看起来像一个错误。如何避免这种行为并使视图位于屏幕边界内?
默认情况下,为维度设置 wrap_content
的 Views
在内容太大而无法容纳时不会强制执行约束。要更改此行为并限制维度,您需要为 EditText
.
设置 app:layout_constrainedHeight="true"
作为旁注,您还应该避免使用 match_parent
作为 ConstraintLayout
中包含的 Views
,如 documentation.
中所述
我在将 2 个视图简单地放置在屏幕中央时遇到了 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>
但是当Content growth Title被移出屏幕边界时。它看起来像一个错误。如何避免这种行为并使视图位于屏幕边界内?
默认情况下,为维度设置 wrap_content
的 Views
在内容太大而无法容纳时不会强制执行约束。要更改此行为并限制维度,您需要为 EditText
.
app:layout_constrainedHeight="true"
作为旁注,您还应该避免使用 match_parent
作为 ConstraintLayout
中包含的 Views
,如 documentation.