我的活动中有一个带有示例背景的回收者视图,但我遇到了错误。每当键盘弹出活动时,recycler-view的背景就会缩小。如何避免这件事。意味着如何阻止它萎缩?以下是附在下面的图片。
XML代码:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/splash_bg"
tools:context=".MainActivity">
<android.support.v7.widget.RecyclerView
android:id="@+id/recyclerView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above="@+id/editText" />
<EditText
android:id="@+id/editText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:layout_marginBottom="5dp"
android:layout_marginEnd="15dp"
android:layout_marginStart="15dp"
android:layout_marginTop="5dp"
android:background="#fff"
android:hint="Your text here"
android:inputType="text"
android:padding="12dp"
android:textSize="24sp" />
</RelativeLayout>
答案 0 :(得分:0)
在manifest add
中声明的recyclerview容器活动的标记中android:windowSoftInputMode="stateHidden|adjustNothing"
喜欢
<activity
android:name=".YourActivityName"
android:windowSoftInputMode="stateHidden|adjustNothing" />
答案 1 :(得分:0)
将图像添加到布局背景中,而不是在recyclerview中。而且recyclerview的项目除了对小部件的必要外,应该没有背景颜色。
答案 2 :(得分:0)
在android:windowSoftInputMode
下的"adjustPan"
中将属性AndroidManifest.xml
设置为activity
:
<activity
android:name=".YourActivityName"
android:windowSoftInputMode="adjustPan" />