0

我在 ScrollView 中有一个 RelativeLayout,其中包含一个 Button 和一些 TextViews 和 EditTexts。

在我的 xml 布局文件中,我定义了 android:onClick 但它总是需要两次单击按钮才能触发事件。该按钮始终在第一次单击时获得焦点,并在第二次单击时触发 onClick 事件。我尝试将 focusable 和 focusableInTouchMode 都设置为 false,但行为没有改变。

这是我的布局文件:

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="@dimen/activity_vertical_margin"
    tools:context=".DensityActivity" >

    <RelativeLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" >

        <TextView
        ...

        <TextView
        ...

        <TextView
        ...

        <EditText
        ...

        <Button
            android:id="@+id/ad_button_calculate"
            android:layout_width="112dp"
            android:layout_height="wrap_content"
            android:layout_below="@id/ad_edit_obs_temp"
            android:layout_alignParentRight="true"
            android:layout_marginTop="20pt"
            android:paddingLeft="6pt"
            android:onClick="onClick"
            android:focusable="false"
            android:focusableInTouchMode="false"
            android:text="@string/button_calculate" />

        <TextView
        ...

    </RelativeLayout>
</ScrollView>

关于为什么 focusable 和 focusableInTouchMode 似乎没有做任何事情的任何想法或建议?

我认为这可能是我的 onClick() 方法没有做它应该做的,所以我把它简化为一些简单的东西,只是为了看看它的行为是一样的。这是我的简化 onClick():

public void onClick(View view) {

    new AlertDialog.Builder(this).setTitle("Argh").setMessage("Watch out!").setNeutralButton("Close", null).show();

}
4

1 回答 1

4

好的,我找到了。当然,这是我自己的错误。在我的 onCreate 方法结束时,我正在这样做:

// Set the focus to the calculate button so the keyboard won't show up automatically 
Button calcButton = (Button)findViewById( R.id.ac_button_calculate );
calcButton.setFocusable( true );
calcButton.setFocusableInTouchMode( true ); 
calcButton.requestFocus();

所以当然,无论我在我的 xml 文件中做了什么,我都会在我的代码中覆盖它。相反,我用它来隐藏键盘:

getWindow().setSoftInputMode( WindowManager.LayoutParams.SOFT_INPUT_STATE_HIDDEN );

效果很好。

于 2013-07-03T22:59:04.617 回答