当我单击 Edittext 时,会出现键盘。有一个按钮在键盘打开时仍然可见,但不可点击。只有当您点击“返回”按钮并且键盘消失时,您才能单击该按钮。即使键盘可见,我也希望能够单击该按钮。此问题仅适用于 4 及更高版本的 android,在旧版本中一切正常。
即使弹出键盘,如何使该可见按钮可点击?
这是代码:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:mm="http://millennialmedia.com/android/schema"
android:id="@+id/mainLayout"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<ImageView android:id="@+id/topLogo"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:contentDescription="@string/logo_desc"
android:src="@drawable/top_logo" />
<EditText
android:id="@+id/searchField"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_below="@+id/topLogo"
android:inputType="textPersonName" >
</EditText>
<Button
android:id="@+id/searchButton"
style="?android:attr/buttonStyleSmall"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/searchField"
android:layout_centerHorizontal="true"
android:text="@string/search_button_label" />
</RelativeLayout>