gpt4 book ai didi

android scrollview 在键盘打开后不向下滚动

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:24:23 26 4
gpt4 key购买 nike

我有一个位于 ScrollView 内部的 TextView ,它可以很好地滚动直到打开软键盘。

当键盘打开时,它的行为就像它再次随着键盘的高度向上滚动。

我尝试过的

我在 list 中试过这个,但产生了完全相同的结果

android:windowSoftInputMode="adjustResize"

然后这个:

android:windowSoftInputMode="adjustPan"

这似乎行得通,但问题是它向上移动了整个屏幕并使标题不可见。

我还尝试在线性布局中添加以下内容

android:focusable="true"
android:focusableInTouchMode="true"

这只会导致应用程序不关注输入字段 (EditText) 并且键盘不会自动打开,但是当您单击输入字段时它会像以前一样运行。

这是 XML 文件代码:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/lightGray"
android:orientation="vertical" >

<ScrollView
android:id="@+id/scrollView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above="@+id/bottom_layout"
android:layout_marginTop="10dip" >

<LinearLayout
android:id="@+id/msg_list_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
</LinearLayout>
</ScrollView>

<RelativeLayout
android:id="@+id/bottom_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:background="@android:color/background_light">
<Button
android:id="@+id/send_btn"
style="?android:attr/buttonStyleSmall"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:text="@string/txt_send" />

<EditText
android:id="@+id/msg_edit"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignBottom="@+id/send_btn"
android:layout_toLeftOf="@+id/send_btn"
android:inputType="text" >
</EditText>
</RelativeLayout>

有什么建议吗?

最佳答案

我有同样的问题,解决方案是这样的:我的 Activity 处于全屏模式,滚动在此模式下不起作用这是一个错误,我们向谷歌发送了一份报告。只需查看 manifest 中的 Activity ,如果有全屏模式,只需将其删除即可。

关于android scrollview 在键盘打开后不向下滚动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20167071/

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