edittext和搜索按钮缩小并超出范围

时间:2016-07-01 04:56:35

标签: android android-edittext

我有以下布局

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    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"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    android:orientation="vertical"
    tools:context="com.example.android.booklistings.MainActivity">
    <RelativeLayout
        android:layout_weight="2"
        android:layout_width="match_parent"
        android:layout_height="0dp">
        <EditText
            android:id="@+id/search_text"
            android:layout_marginTop="10dp"
            android:imeOptions="actionSearch"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:hint="Type the name of book"
            android:inputType="text"/>
        <ImageButton
            android:layout_toRightOf="@id/search_text"
            android:layout_toEndOf="@id/search_text"
            android:id="@+id/search_button"
            android:adjustViewBounds="true"
            android:scaleType="centerCrop"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:src="@drawable/search" />
    </RelativeLayout>
    <ListView
        android:layout_weight="8"
        android:id="@+id/book_list"
        android:orientation="vertical"
        android:layout_width="match_parent"
        android:layout_height="0dp">
    </ListView>
</LinearLayout>

我不明白为什么当键盘弹出屏幕时我无法清楚地看到编辑框!我有listview和edittext。如果我输入内容并按下搜索按钮,则将填充列表视图,并通过我的自定义适配器填充许多视图。

键盘出现在屏幕上时看不到编辑框列表视图很好..

1 个答案:

答案 0 :(得分:1)

您无法看到EditText,因为弹出软键盘时它会向上移动。

要停止这种转变行为,您必须包含以下内容:

android:windowSoftInputMode="adjustPan|adjustResize"

在清单文件的相应活动代码中。