作者热门文章
- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我的应用程序是一个聊天应用程序,它的 UI 是:
应用程序的标题
ListView
聊天消息、输入框、发送按钮
但问题是当我单击编辑文本时,软键盘出现并将所有内容向上推,但我需要标题留在屏幕上。我附上了简化的问题图像和 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 - 软键盘进来后,如何保持部分组件固定?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4791574/
我是一名优秀的程序员,十分优秀!