gpt4 book ai didi

android - 显示软键盘时 ScrollView 不会缩小

转载 作者:行者123 更新时间:2023-11-30 02:37:49 24 4
gpt4 key购买 nike

我有一个简单的聊天 Activity ,顶部有一个消息输入框,然后是一个带有消息列表的 ScrollView 。当软键盘打开时,我希望 ScrollView 缩小,以便最后一条消息不被键盘覆盖。这是我的 xml:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:padding="8dp" >

<TextView
android:id="@+id/chat_with"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:text="Chat with Gordon" />

<RelativeLayout
android:id="@+id/msg_container"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/chat_with"
android:layout_marginTop="10dp">

<EditText
android:id="@+id/chat_message"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:ems="10"
android:hint="Type your message" />

<ImageButton
android:id="@+id/chat_send"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:background="#00000000"
android:src="@+android:drawable/ic_menu_send" />
</RelativeLayout>



<ScrollView
android:id="@+id/chat_container"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/msg_container"
android:layout_marginTop="15dp"
android:padding="10dp"
android:isScrollContainer="true"
>

<RelativeLayout
android:id="@+id/chat_text"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
>

<TextView
android:id="@+id/msg1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hi, how are you?"
android:layout_alignParentRight="true"/>

<TextView
android:id="@+id/msg2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="hey! All right"
android:layout_alignParentLeft="true"
android:layout_below="@+id/msg1"/>



</RelativeLayout>

</ScrollView>

</RelativeLayout>

我只是手动插入了两条消息,但在真正的应用程序中会有很多。我已经尝试使用 adjustPan|adjustResize 解决方案,但它不起作用,当我按下键盘时,布局没有改变,最后的消息被键盘覆盖。我怎样才能避免这种情况?感谢您的帮助!

最佳答案

我使用 list 解决了这个问题。在我使用的 Activity 中:

        android:windowSoftInputMode="stateHidden|adjustResize"

这样一开始键盘是隐藏的,然后当用户在 EditText 中单击时,键盘将显示出来,屏幕的其余部分也会调整大小。

查看 windowSoftInputMode 以了解键盘行为的其他设置(例如,只是覆盖屏幕而不是调整大小)。

编辑:要在键盘出现后将 ScrollView 滚动到底部,我需要稍微延迟一下,因为有时滚动会先发生,然后键盘出现, ScrollView 不再位于底部。由于其他原因我最终没有保留它,但是为了稍微延迟滚动,可以这样做:

    // now scroll to the bottom
ScrollView sv = (ScrollView) findViewById(R.id.myScrollView);
sv.post(new Runnable() {
@Override

public void run() {

ScrollView sv = (ScrollView) findViewById(R.id.myScrollView);
sv.scrollTo(0, sv.getBottom());

}
});

关于android - 显示软键盘时 ScrollView 不会缩小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26221620/

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