0
  <?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:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="@string/sortByName" />

<ListView
    android:id="@+id/listViewContacts"
    android:layout_width="fill_parent"
    android:layout_weight="0.9"
    android:layout_height="0dp" >
</ListView>

<LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="0dp"
        android:layout_weight="0.1"
        android:orientation="horizontal" >


<EditText
    android:id="@+id/editTxtSearch"
    android:layout_width="225sp"
    android:layout_height="wrap_content"
    android:hint="Search Contacts..."
    android:focusable="true">

    <requestFocus />
</EditText>

<Button
    android:id="@+id/btnSearch"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Search"
    android:layout_gravity="right" />
</LinearLayout>

当活动开始时,键盘会自动出现在屏幕上,并且编辑文本没有正确显示,即随着编辑文本的高度缩小,编辑文本中没有显示文本。

4

1 回答 1

0

您可以使用以下代码行来确保仅在用户单击 EditText 时才会弹出键盘

this.getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_HIDDEN);

您需要添加

android:windowSoftInputMode="adjustResize"

到 AndroidManifest.xml 文件中的活动标记。

于 2012-11-07T07:33:19.133 回答