我在RecyclerView
内有一个ConstraintLayout
,它的顶部受parent
约束,底部受EditText
约束。效果很好,但是,一旦我将回收站设置为 reverseLayout=true
,如果我的项目比屏幕显示的要多,则必须向下滚动底部的第一项才能完全看到。预览正是在真实设备上发生的,这让我觉得我缺少布局中的某些内容。
注意:
如果我从EditText
到RecyclerView
删除了app:layout_constraintBottom_toTopOf="@id/feedMessageInput"
中app:layout_constraintBottom_toBottomOf="parent"
的{{1}}的底部约束,则不会发生此问题,但这不是可取的。
Xml布局:
<?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:layout_marginStart="@dimen/margin_half"
android:layout_marginTop="@dimen/margin_normal"
android:layout_marginEnd="@dimen/margin_normal"
android:layout_marginBottom="@dimen/margin_normal"
android:background="@drawable/shp_rounded_rectangle_transparent_white_05"
tools:context=".ui.messages.feed.FeedFragment">
<ImageView
android:id="@+id/feedEmptyImageView"
android:layout_width="@dimen/icon_size_xxxxxlarge"
android:layout_height="@dimen/icon_size_xxxxxlarge"
android:contentDescription="@string/no_recipients_image"
android:src="@drawable/ic_messages_124dp"
android:visibility="gone"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
tools:visibility="visible" />
<android.support.v7.widget.RecyclerView
android:id="@+id/feedRecycler"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_marginStart="@dimen/margin_triple"
android:layout_marginEnd="@dimen/margin_half"
android:scrollbars="vertical"
app:layoutManager="android.support.v7.widget.LinearLayoutManager"
app:layout_constraintBottom_toTopOf="@id/feedMessageInput"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:reverseLayout="true"
tools:itemCount="5"
tools:listitem="@layout/row_message" />
<de.hdodenhof.circleimageview.CircleImageView
android:id="@+id/feedRecipient"
android:layout_width="@dimen/icon_size_medium"
android:layout_height="@dimen/icon_size_medium"
app:layout_constraintStart_toStartOf="parent"
android:layout_marginStart="@dimen/margin_normal"
app:layout_constraintTop_toTopOf="@id/feedMessageInput"
app:layout_constraintBottom_toBottomOf="@id/feedMessageInputView"
app:layout_constraintEnd_toStartOf="@id/feedMessageInputView"
app:layout_constraintHorizontal_bias="0"
tools:src="@tools:sample/avatars" />
<View
android:id="@+id/feedMessageInputView"
android:layout_width="0dp"
android:layout_height="0dp"
android:background="@drawable/shp_rounded_rectangle_transparent_white_10"
android:maxHeight="@dimen/message_background_input_max_height"
app:layout_constraintBottom_toBottomOf="@id/feedMessageInput"
app:layout_constraintEnd_toEndOf="@id/feedMessageInput"
app:layout_constraintStart_toStartOf="@id/feedMessageInput"
app:layout_constraintTop_toTopOf="@id/feedMessageInput" />
<EditText
android:id="@+id/feedMessageInput"
style="@style/MessagingEditText.NoUnderline"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_margin="@dimen/margin_normal"
android:importantForAutofill="no"
android:inputType="textMultiLine"
android:maxLength="@integer/max_message_length"
android:padding="@dimen/margin_half"
android:textSize="@dimen/message_input_text_size"
app:layout_constrainedHeight="true"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toStartOf="@id/feedSelectTemplate"
app:layout_constraintHeight_max="@dimen/message_background_input_max_height"
app:layout_constraintHeight_min="@dimen/message_background_input_height"
app:layout_constraintStart_toEndOf="@id/feedRecipient"
app:layout_constraintTop_toBottomOf="@id/feedRecycler"
tools:hint="Send message to +447445343433"
tools:ignore="LabelFor" />
<android.support.design.widget.FloatingActionButton
android:id="@+id/feedSendMessage"
style="@style/MessagingFloatingActionButton.Small"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginEnd="@dimen/margin_normal"
android:src="@drawable/ic_sms_message_send_24dp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toEndOf="@id/feedSelectTemplate"
app:layout_constraintTop_toTopOf="@id/feedMessageInput" />
<android.support.design.widget.FloatingActionButton
android:id="@+id/feedSelectTemplate"
style="@style/MessagingFloatingActionButton.Small.Contrast"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginEnd="@dimen/margin_normal"
android:src="@drawable/ic_sms_message_template_24dp"
app:layout_constraintEnd_toStartOf="@id/feedSendMessage"
app:layout_constraintStart_toEndOf="@id/feedMessageInput"
app:layout_constraintTop_toTopOf="@id/feedMessageInput" />
</android.support.constraint.ConstraintLayout>
当多行滚动到顶部和底部时当前预览不正确-这是不正确的:
无论有多少行从顶部滚动,我如何期望reverseLayout=true
起作用:
对于我可能错过的任何帮助,将不胜感激。
答案 0 :(得分:1)
针对{em> ConstraintLayout 的documentation:
重要提示:不建议对ConstraintLayout中包含的窗口小部件使用MATCH_PARENT。可以通过使用MATCH_CONSTRAINT来定义类似的行为,并将相应的左/右或上/下约束设置为“父”。
为什么这样的工作?我的猜测是,它实际上不受支持,但尚未禁用,可能未经过测试。简短的答案是专门使用match_constraints
(0dp
),并在任何时候都避免使用match_parent
来处理 ConstraintLayout 。
答案 1 :(得分:-1)
遇到同样的问题。看起来好像是ConstraintLayout问题(仍在beta中)。 我重写了xml布局以使用LinearLayout,它对我有用。 但仍在等待Google的修复。