Android键盘与ListView重叠

Android键盘与ListView重叠,第1张

概述我有一个问题,我有一个ListView和一个EditText设计如下:<RelativeLayoutxmlns:android="http://schemas.android.com/apkes/android"xmlns:tools="http://schemas.android.comools"android:layout_width="match_parent"android:layout_ @H_419_0@我有一个问题,我有一个ListVIEw和一个EditText设计如下:

@H_419_0@

<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:paddingBottom="@dimen/activity_vertical_margin"    androID:paddingleft="@dimen/activity_horizontal_margin"    androID:paddingRight="@dimen/activity_horizontal_margin"    androID:paddingtop="@dimen/activity_vertical_margin"    tools:context=".ShoutBoxTab" >    <ListVIEw        androID:ID="@+ID/shoutBox"        androID:layout_wIDth="match_parent"        androID:layout_height="wrap_content"        androID:layout_above="@+ID/shoutBox_fIEld"        androID:layout_alignParentRight="true"        androID:layout_marginBottom="14dp"        androID:layout_marginRight="20dp" >    </ListVIEw>    <button        androID:ID="@+ID/shoutBox_button"        androID:layout_wIDth="wrap_content"        androID:layout_height="wrap_content"        androID:layout_alignParentBottom="true"        androID:layout_alignParentRight="true"        androID:layout_toRightOf="@+ID/shoutBox_fIEld"        androID:text="Shout" />    <EditText        androID:ID="@+ID/shoutBox_fIEld"        androID:layout_wIDth="wrap_content"        androID:layout_height="wrap_content"        androID:layout_alignBottom="@+ID/shoutBox_button"        androID:layout_alignleft="@+ID/shoutBox"        androID:ems="10" >        <requestFocus />    </EditText></relativeLayout>
@H_419_0@因此,EditText在ListVIEw下.当我将项目添加到ListVIEw并单击EditText进行键入时,键盘与ListVIEw的底部重叠.我想确保ListVIEw的底部与键盘对齐.这可能吗?谢谢

解决方法:

@H_419_0@使用< activity androID:windowsoftinputMode =“ adjustResize”>在你的清单上.
第二个在< ListVIEw />中添加androID:transcriptMode =“ alwaysScroll”属性

总结

以上是内存溢出为你收集整理的Android键盘与ListView重叠全部内容,希望文章能够帮你解决Android键盘与ListView重叠所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1088084.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-27
下一篇 2022-05-27

发表评论

登录后才能评论

评论列表(0条)

保存