2

当我单击 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>
4

1 回答 1

0

轮到自己<com.millennialmedia.android.MMAdView/>造成了问题。它与所有其他组件在同一个 RelativeLayout 中。将 MMAdView 放到主布局内的另一个布局中解决了这个问题。

于 2012-10-07T18:14:51.197 回答