作者: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>
网友评论