我对使用ConstraintLayout非常陌生。在尝试学习使用此功能时,我决定为自己创建一个简单的聊天应用。
我有一个RecyclerView来显示聊天列表,并在其下有一个ConstraintLayout,用于键入消息(我的代码在底部)。我非常想使用“ fill-parent”属性,但是我发现它已被弃用。
因此,我将RecyclerView设置为在底部受其下面的ConstraintLayout约束。因此,我期望当键盘出现时,RecyclerView会“缩小”以键入我的消息。但是,它并没有这样做,而是保持其最大高度。
有没有办法解决这个问题?
这是我的代码:
<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:paddingTop="10dp"
android:paddingBottom="10dp"
android:paddingLeft="5dp"
android:paddingRight="5dp"
tools:context=".StreamPlayer.StreamPlayerActivity">
<android.support.v7.widget.RecyclerView
android:id="@id/ChatRecyclerView"
android:layout_width="match_parent"
android:layout_height="0dp"
android:scrollbars="vertical"
app:layout_constraintBottom_toTopOf="@id/ChatTypingLayout"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
tools:listitem="@layout/chat_layout" /
<android.support.constraint.ConstraintLayout
android:id="@id/ChatTypingLayout"
android:layout_width="match_parent"
android:layout_height="40dp"
android:orientation="horizontal"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent">
<EditText
android:id="@id/ChatNameEditText"
android:layout_width="0dp"
android:layout_height="match_parent"
android:hint="@string/ChatNameEditText"
android:inputType="text"
android:maxLines="1"
app:layout_constraintHorizontal_weight="1"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toLeftOf="@id/ChatMessageEditText"
app:layout_constraintStart_toStartOf="parent"
android:textSize="10dp"/>
<EditText
android:id="@id/ChatMessageEditText"
android:layout_width="0dp"
android:layout_height="match_parent"
android:hint="@string/ChatMessageEditText"
android:inputType="textLongMessage"
android:maxLines="3"
app:layout_constraintHorizontal_weight="4"
app:layout_constraintLeft_toRightOf="@id/ChatNameEditText"
app:layout_constraintRight_toLeftOf="@id/ChatSendButton"
android:textSize="10dp"/>
<Button
android:id="@id/ChatSendButton"
android:layout_width="0dp"
android:layout_height="match_parent"
android:text="@string/ChatSendButton"
app:layout_constraintHorizontal_weight="2"
app:layout_constraintLeft_toRightOf="@id/ChatMessageEditText"
app:layout_constraintRight_toRightOf="parent"/>
</android.support.constraint.ConstraintLayout>
</android.support.constraint.ConstraintLayout>
预先感谢
答案 0 :(得分:0)
我认为您应该考虑采用第二个ConstraintLayout并将所有内容合而为一,这是ConstraintLayout的主要目的,避免嵌套布局。 而且,如何在代码中初始化回收者视图?您要设定一个固定的高度吗?
答案 1 :(得分:0)
在Android developers' site上查看本文,该文章描述了框架如何处理出现的软键盘。
android:windowSoftInputMode
属性可用于指定每个活动的基础:布局是否已调整大小或是否滚动等。
来自Christopher Orr的答案
您也可以通过onCreate()
方法尝试这样做:
getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_PAN);