这是我的问题:我有一个包含很多editText的RecyclerView。 当我点击回收器末端的editText时,我的软键盘显示然后立即隐藏。 (我想可能是因为软键盘会隐藏editText)。
我设置
android:windowSoftInputMode="adjustResize"
在我的活动中并没有解决我的问题。
我也试过
recyclerView.scrollToPosition(recyclerView.size() - 1);
但它也没有用。
这是我的recyclerView
的xml代码 <android.support.v7.widget.RecyclerView
android:id="@+id/message_editor_recycler"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/grey_lightest"
android:divider="@null"
android:dividerHeight="0dp"
android:scrollbars="none"
/>
非常感谢你的帮助。