Wrap_content ConstraintLayout 内的视图延伸到屏幕外
Wrap_content view inside a ConstraintLayout stretches outside the screen
我正在尝试使用 ConstraintLayout
实现一个简单的聊天气泡。这就是我想要实现的目标:
然而,wrap_content
并没有如我所愿。它尊重边距,但会扩展到视图边界之外。这是我的布局:
<?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="wrap_content">
<TextView
android:id="@+id/chat_message"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="16dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintHorizontal_bias="0"
tools:background="@drawable/chat_message_bubble"
tools:text="Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris sodales accumsan tortor at bibendum."
android:layout_marginStart="64dp"
android:layout_marginLeft="64dp"
android:layout_marginEnd="32dp"
android:layout_marginRight="32dp"
android:layout_marginTop="8dp"
android:layout_marginBottom="8dp" />
</android.support.constraint.ConstraintLayout>
渲染如下:
我正在使用 com.android.support.constraint:constraint-layout:1.0.0-beta4
。
我是不是做错了什么?这是一个错误还是只是一种不直观的行为?我可以使用 ConstraintLayout
实现正确的行为吗(我知道我可以使用其他布局,我特别询问 ConstrainLayout
)。
过时:
不,你不能像现在这样用 ConstraintLayout 做你想做的事 (1.0 beta 4):
wrap_content
仅要求小部件测量自身,但不会限制其针对最终约束的扩展
match_constraints
(0dp) 将 限制小部件的大小以适应约束...但即使 wrap_content
本来可以匹配它们更小(你的第一个例子),这也不是你想要的。
所以现在,你在那个特定案例中运气不佳:-/
现在...我们正在考虑向 match_constraints
添加额外的功能来处理这种确切的情况(表现为 wrap_content
除非大小结束超过限制)。
虽然我不能保证这个新功能会在 1.0 版本之前实现。
编辑:我们确实在 1.0 中使用属性 app:layout_constraintWidth_default="wrap"
(宽度设置为 0dp)添加了此功能。如果设置,小部件将具有与使用 wrap_content 相同的大小,但会受到约束的限制(即它不会扩展到它们之外)
更新
现在不推荐使用这些标签,而是使用 layout_width="WRAP_CONTENT" 和 layout_constrainedWidth="true".
是的,正如 Nikolas Roard 给出的答案中提到的,您应该添加 app:layout_constraintWidth_default="wrap"
并将宽度设置为 0dp。为了让你的气泡正确对齐,你应该为 layout_constraintHorizontal_bias
.
设置 1.0
这是最终的源代码:
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<TextView
android:id="@+id/chat_message"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:padding="16dp"
android:layout_marginTop="8dp"
android:layout_marginStart="64dp"
android:layout_marginEnd="8dp"
android:layout_marginBottom="8dp"
app:layout_constraintHorizontal_bias="1.0"
app:layout_constraintWidth_default="wrap"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
android:background="@drawable/chat_message_bubble"
android:text="Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris sodales accumsan tortor at bibendum." />
</android.support.constraint.ConstraintLayout>
结果看起来像:
你应该更换
android:layout_width="wrap_content"
与
android:layout_width="match_parent"
从您的 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_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:id="@+id/chat_message"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="8dp"
android:layout_marginEnd="10dp"
android:layout_marginLeft="60dp"
android:layout_marginRight="10dp"
android:layout_marginStart="60dp"
android:layout_marginTop="8dp"
android:padding="16dp"
app:layout_constraintTop_toTopOf="parent"
tools:background="#c9c7c7"
tools:text="Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris sodales accumsan tortor at bibendum." />
你会得到这个结果
已更新(ConstraintLayout 1.1.+)
使用 app:layout_constrainedWidth="true"
和 android:layout_width="wrap_content"
以前(已弃用):
app:layout_constraintWidth_default="wrap"
与 android:layout_width="0dp"
我用这个
app:layout_constraintEnd_toEndOf="parent"
就像已经说过的其他答案一样,自从 ConstraintLayout 1.0 以来,就有可能实现这一点,但从最新版本 (1.1.x) 开始,他们已经改变了你的做法。
自 ConstraintLayout 1.1 发布以来,旧的 app:layout_constraintWidth_default="wrap"
和 app:layout_constraintHeight_default="wrap"
属性 现已弃用。
如果您想提供 wrap_content
行为,但仍对您的视图施加约束,您应该将其宽度 and/or 高度设置为 wrap_content
并结合 app:layout_constrainedWidth=”true|false”
and/or app:layout_constrainedHeight=”true|false”
属性,如所述 on the docs:
WRAP_CONTENT : enforcing constraints (Added in 1.1) If a dimension is
set to WRAP_CONTENT, in versions before 1.1 they will be treated as a
literal dimension -- meaning, constraints will not limit the resulting
dimension. While in general this is enough (and faster), in some
situations, you might want to use WRAP_CONTENT, yet keep enforcing
constraints to limit the resulting dimension. In that case, you can
add one of the corresponding attribute:
app:layout_constrainedWidth=”true|false”
app:layout_constrainedHeight=”true|false”
至于最新版本,在我回答此问题时,ConstraintLayout is on version 1.1.2。
@nicolas-roard 对 app:layout_constraintWidth_default="wrap"
和 android:layout_width="0dp"
的回答现在是 DEPRECATED.
继续使用 app:layout_constrainedWidth="true"
和 android:layout_width="wrap_content"
。
弃用的原因,我不知道。但是它在ConstraintLayout
的源代码中是正确的
我正在尝试使用 ConstraintLayout
实现一个简单的聊天气泡。这就是我想要实现的目标:
然而,wrap_content
并没有如我所愿。它尊重边距,但会扩展到视图边界之外。这是我的布局:
<?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="wrap_content">
<TextView
android:id="@+id/chat_message"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="16dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintHorizontal_bias="0"
tools:background="@drawable/chat_message_bubble"
tools:text="Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris sodales accumsan tortor at bibendum."
android:layout_marginStart="64dp"
android:layout_marginLeft="64dp"
android:layout_marginEnd="32dp"
android:layout_marginRight="32dp"
android:layout_marginTop="8dp"
android:layout_marginBottom="8dp" />
</android.support.constraint.ConstraintLayout>
渲染如下:
我正在使用 com.android.support.constraint:constraint-layout:1.0.0-beta4
。
我是不是做错了什么?这是一个错误还是只是一种不直观的行为?我可以使用 ConstraintLayout
实现正确的行为吗(我知道我可以使用其他布局,我特别询问 ConstrainLayout
)。
过时:
不,你不能像现在这样用 ConstraintLayout 做你想做的事 (1.0 beta 4):
wrap_content
仅要求小部件测量自身,但不会限制其针对最终约束的扩展match_constraints
(0dp) 将 限制小部件的大小以适应约束...但即使wrap_content
本来可以匹配它们更小(你的第一个例子),这也不是你想要的。
所以现在,你在那个特定案例中运气不佳:-/
现在...我们正在考虑向 match_constraints
添加额外的功能来处理这种确切的情况(表现为 wrap_content
除非大小结束超过限制)。
虽然我不能保证这个新功能会在 1.0 版本之前实现。
编辑:我们确实在 1.0 中使用属性 app:layout_constraintWidth_default="wrap"
(宽度设置为 0dp)添加了此功能。如果设置,小部件将具有与使用 wrap_content 相同的大小,但会受到约束的限制(即它不会扩展到它们之外)
更新 现在不推荐使用这些标签,而是使用 layout_width="WRAP_CONTENT" 和 layout_constrainedWidth="true".
是的,正如 Nikolas Roard 给出的答案中提到的,您应该添加 app:layout_constraintWidth_default="wrap"
并将宽度设置为 0dp。为了让你的气泡正确对齐,你应该为 layout_constraintHorizontal_bias
.
这是最终的源代码:
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<TextView
android:id="@+id/chat_message"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:padding="16dp"
android:layout_marginTop="8dp"
android:layout_marginStart="64dp"
android:layout_marginEnd="8dp"
android:layout_marginBottom="8dp"
app:layout_constraintHorizontal_bias="1.0"
app:layout_constraintWidth_default="wrap"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
android:background="@drawable/chat_message_bubble"
android:text="Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris sodales accumsan tortor at bibendum." />
</android.support.constraint.ConstraintLayout>
结果看起来像:
你应该更换
android:layout_width="wrap_content"
与
android:layout_width="match_parent"
从您的 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_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:id="@+id/chat_message"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="8dp"
android:layout_marginEnd="10dp"
android:layout_marginLeft="60dp"
android:layout_marginRight="10dp"
android:layout_marginStart="60dp"
android:layout_marginTop="8dp"
android:padding="16dp"
app:layout_constraintTop_toTopOf="parent"
tools:background="#c9c7c7"
tools:text="Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris sodales accumsan tortor at bibendum." />
你会得到这个结果
已更新(ConstraintLayout 1.1.+)
使用 app:layout_constrainedWidth="true"
和 android:layout_width="wrap_content"
以前(已弃用):
app:layout_constraintWidth_default="wrap"
与 android:layout_width="0dp"
我用这个
app:layout_constraintEnd_toEndOf="parent"
就像已经说过的其他答案一样,自从 ConstraintLayout 1.0 以来,就有可能实现这一点,但从最新版本 (1.1.x) 开始,他们已经改变了你的做法。
自 ConstraintLayout 1.1 发布以来,旧的 app:layout_constraintWidth_default="wrap"
和 app:layout_constraintHeight_default="wrap"
属性 现已弃用。
如果您想提供 wrap_content
行为,但仍对您的视图施加约束,您应该将其宽度 and/or 高度设置为 wrap_content
并结合 app:layout_constrainedWidth=”true|false”
and/or app:layout_constrainedHeight=”true|false”
属性,如所述 on the docs:
WRAP_CONTENT : enforcing constraints (Added in 1.1) If a dimension is set to WRAP_CONTENT, in versions before 1.1 they will be treated as a literal dimension -- meaning, constraints will not limit the resulting dimension. While in general this is enough (and faster), in some situations, you might want to use WRAP_CONTENT, yet keep enforcing constraints to limit the resulting dimension. In that case, you can add one of the corresponding attribute:
app:layout_constrainedWidth=”true|false” app:layout_constrainedHeight=”true|false”
至于最新版本,在我回答此问题时,ConstraintLayout is on version 1.1.2。
@nicolas-roard 对 app:layout_constraintWidth_default="wrap"
和 android:layout_width="0dp"
的回答现在是 DEPRECATED.
继续使用 app:layout_constrainedWidth="true"
和 android:layout_width="wrap_content"
。
弃用的原因,我不知道。但是它在ConstraintLayout
的源代码中是正确的