当软键盘进入时如何保持一些组件固定?

时间:2011-01-25 09:04:01

标签: android layout

我的应用程序是一个聊天应用程序,其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在默认消息传递应用中有此要求。

有没有人有任何想法?

3 个答案:

答案 0 :(得分:4)

问题已经很老了,但无论如何 - 解决这个问题的一种方法是将标题下方的所有内容放在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>

答案 1 :(得分:1)

描述的解决方案here是解决方案。您的全屏主题负责Kamil Los无法重现您的问题。

您需要调整活动的windowSoftInputMode标记,如here所述。

尝试将标记“android:windowSoftInputMode =”adjustResize“”添加到应用程序清单中的违规活动中。

答案 2 :(得分:-1)

这很奇怪,因为我创建了一个新项目,粘贴了你的布局,标题在我的情况下不会消失(在2.2模拟器和1.6中都没有)。