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 に答える