我在 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();
}