<?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>
当活动开始时,键盘会自动出现在屏幕上,并且编辑文本显示不正确,即编辑文本中没有文字显示为编辑文本的高度缩小。
答案 0 :(得分:0)
您可以使用以下代码行确保仅当用户点击EditText时弹出键盘
this.getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_HIDDEN);
和
您需要添加
android:windowSoftInputMode="adjustResize"
到AndroidManifest.xml文件中的您的活动代码。