Android:键盘打开时向下滚动ListView

时间:2016-03-12 14:44:11

标签: android listview

我有以下布局:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="de.blabla.bla.MessageActivity">

    <LinearLayout
        android:orientation="vertical"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@color/mytheme_dark">

        <ListView
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:id="@+id/listView2"
            android:layout_marginBottom="50dp"
            android:dividerHeight="0dp"
            android:divider="@null" />

        <LinearLayout
            android:orientation="horizontal"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_marginTop="-50dp">

            <EditText
                android:layout_width="fill_parent"
                android:layout_height="match_parent"
                android:id="@+id/messageInput"
                android:background="#9f7348"
                android:layout_marginRight="65dp"
                android:paddingLeft="5dp" />

            <Button
                style="?android:attr/buttonStyleSmall"
                android:layout_width="fill_parent"
                android:layout_height="match_parent"
                android:text="Send"
                android:id="@+id/sendButton"
                android:background="@color/mytheme_color"
                android:layout_marginLeft="-65dp" />
        </LinearLayout>
    </LinearLayout>
</RelativeLayout>

它显示下面的Listview和文本输入字段。如果我按下文本输入字段,键盘将打开并覆盖一些列表视图元素。我想在键盘打开时向下滚动列表视图。我怎么能这样做?

修改 在做什么时,答案是什么,除了键盘半部分与输入字段重叠之外,它的工作原理。见图:

enter image description here enter image description here

2 个答案:

答案 0 :(得分:1)

在托管ListView的Activity中使用它。你也可以在Manifest中添加它

getActivity().getWindow().setSoftInputMode(
            WindowManager.LayoutParams.SOFT_INPUT_ADJUST_PAN);

将当前XML更改为此XML:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="de.freshD.crapapp.MessageActivity">

<ListView
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:id="@+id/listView2"
    android:dividerHeight="0dp"
    android:divider="@null"
    android:layout_above="@+id/messageInput"
    android:background="#FFF"/>

<EditText
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:id="@+id/messageInput"
    android:background="#9f7348"
    android:padding="12dp"
    android:layout_alignParentBottom="true"
    android:layout_alignParentStart="true"
    android:layout_toLeftOf="@+id/sendButton"
    android:layout_toStartOf="@+id/sendButton" />

<Button
    style="?android:attr/buttonStyleSmall"
    android:layout_width="wrap_content"
    android:layout_height="match_parent"
    android:text="Send"
    android:padding="10dp"
    android:id="@+id/sendButton"
    android:background="#FFF"
    android:layout_alignParentBottom="true"
    android:layout_alignParentEnd="true"
    android:layout_below="@+id/listView2" />


 </RelativeLayout>

答案 1 :(得分:0)

您还可以在活动清单中添加adjustPanadjustResize

<application ... >
    <activity
        android:windowSoftInputMode="adjustPan" ... >
        ...
    </activity>
    ...
</application>

这里有一些more info