布局在视图底部有一个recyclerview和一个文本编辑器。当我单击编辑器时,键盘弹出并与recycerview重叠。我希望在键盘启动时调整recyclerview的大小。在我的清单文件中,我有:
<activity android:name=".CommentActivity"
android:label="yourtime"
android:windowSoftInputMode="adjustResize">
</activity>
我的布局如下:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v7.widget.RecyclerView
android:id="@+id/rv"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<LinearLayout
android:orientation="horizontal"
android:minWidth="25px"
android:minHeight="25px"
android:id="@+id/linearLayout1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:weightSum="100"
android:layout_alignParentBottom="true">
<EditText
android:inputType="textMultiLine"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="85"
android:id="@+id/commenteditor"
android:hint="Write a comment" />
<ImageButton
android:src="@drawable/arrow"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="15"
android:id="@+id/send"
android:background="#ffff" />
</LinearLayout>
当键盘出现时,如何使列表向上滚动或调整大小?我已经尝试将recyclelerview封装在scrollview中,但是没有用。
这就是它的样子:
我希望它看起来像这样:
我该怎么办?
答案 0 :(得分:3)
在你的
中<activity android:name=".CommentActivity"
android:label="yourtime"
android:windowSoftInputMode="adjustResize|adjustPan">
</activity>
你不能有多个
adjustResize|adjustPan
结果未定义。
在你的情况下,你想要的是
<activity android:name=".CommentActivity"
android:label="yourtime"
android:windowSoftInputMode="adjustResize"/>
您可以在此处详细了解:
activity-element 在涵盖android:windowSoftInputMode
的部分中您还应该调整布局,以便回收者视图位于编辑文本容器上方。
<android.support.v7.widget.RecyclerView
android:id="@+id/rv"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above="@+id/linearLayout1"/>