[转]解决聊天页面解决软键盘遮挡住输入框,和输入法把整个页面顶上

2019-06-24  本文已影响0人  Amy_LuLu__

作者:G-
来源:CSDN
原文:https://blog.csdn.net/qq_43143981/article/details/85250555

效果图



下面讲一下配置步骤
1.清单文件Activity中里配置

android:windowSoftInputMode="adjustResize"

2.根目录layout布局 加入

android:fitsSystemWindows=“true”

3.Recyview或Listview 设置属性

<ListView
    android:id="@+id/robot_lv"
    android:layout_width="fill_parent"
    android:layout_height="match_parent"
    android:divider="@null"
    android:listSelector="@android:color/transparent"
    android:transcriptMode="alwaysScroll" >
</ListView>
上一篇 下一篇

猜你喜欢

热点阅读