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

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

作者: Amy_LuLu__ | 来源:发表于2019-06-24 14:25 被阅读0次

作者: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>

相关文章

网友评论

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

      本文链接:https://www.haomeiwen.com/subject/cdanqctx.html