gpt4 book ai didi

Android 键盘与 ListView 重叠

转载 作者:太空宇宙 更新时间:2023-11-03 13:25:34 25 4
gpt4 key购买 nike

我有一个问题,我有一个 ListView 和一个像这样设计的 EditText:

<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>

所以 EditText 在 ListView 下面。当我将项目添加到 ListView 并单击 EditText 进行键入时,键盘与 ListView 的底部重叠。我想确保 ListView 的底部与键盘一起上升。这可能吗?谢谢

最佳答案

使用<activity android:windowSoftInputMode="adjustResize">在你的 list 中。第二个添加android:transcriptMode="alwaysScroll"您的属性(property) <ListView />

关于Android 键盘与 ListView 重叠,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20861261/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com