android – 如何在软键盘进入时修复一些组件?

android – 如何在软键盘进入时修复一些组件?,第1张

概述我的应用程序是一个聊天应用程序,其UI是: 应用程序的标题 列表显示 聊天消息,输入框和发送按钮 但问题是,当我点击编辑文本时,软键盘出现并推动所有内容,但我需要标题留在屏幕上.我已经附加了简化的问题图像和UI代码here.(我不能在这篇文章中发布多个链接或图像,因为我是Stack Overflow的新手.) <?xml version="1.0" encoding="utf-8"?><Line 我的应用程序是一个聊天应用程序,其UI是:

应用程序的标题
列表显示
聊天消息,输入框和发送按钮

但问题是,当我点击编辑文本时,软键盘出现并推动所有内容,但我需要标题留在屏幕上.我已经附加了简化的问题图像和UI代码here.(我不能在这篇文章中发布多个链接或图像,因为我是Stack Overflow的新手.)

<?xml version="1.0" enCoding="utf-8"?><linearLayout xmlns:androID="http://schemas.androID.com/apk/res/androID"    androID:layout_wIDth="fill_parent" androID:layout_height="fill_parent"    androID:orIEntation="vertical">    <TextVIEw androID:text="header contents" androID:layout_wIDth="fill_parent"        androID:textSize="20sp" androID:gravity="center_horizontal"        androID:layout_height="wrap_content" />    <ListVIEw androID:ID="@androID:ID/List" androID:layout_wIDth="fill_parent"        androID:layout_height="wrap_content" androID:layout_weight="1" />    <EditText androID:text="" androID:layout_gravity="bottom"        androID:ID="@+ID/EditText01" androID:layout_wIDth="fill_parent"        androID:layout_height="wrap_content"></EditText></linearLayout>

AndroID在默认消息传递应用程序中有此要求.

有没有人有任何想法?

解决方法 问题很老,但无论如何 – 解决这个问题的一种方法是将标题下方的所有内容放在ScrollVIEw中.

例:

<!-- Both elements below are children of a parent relativeLayout --><relativeLayout    androID:ID="@+ID/custom_action_bar"    androID:layout_wIDth="fill_parent"    androID:layout_height="wrap_content"    androID:layout_alignParenttop="true"    androID:isScrollContainer="false" >    <!-- header goes here. -->    <!-- This part remains fixed even with the keypad popPing up. --></relativeLayout><ScrollVIEw    androID:layout_wIDth="wrap_content"    androID:layout_height="wrap_content"    androID:layout_below="@+ID/custom_action_bar"    androID:isScrollContainer="true" >    <!-- Rest of the UI -->    <!-- This part scrolls to accommodate the keyboard --> </ScrollVIEw>
总结

以上是内存溢出为你收集整理的android – 如何在软键盘进入时修复一些组件?全部内容,希望文章能够帮你解决android – 如何在软键盘进入时修复一些组件?所遇到的程序开发问题。

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

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

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

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

发表评论

登录后才能评论

评论列表(0条)

保存