0

我有一个带有 setOnClickListener 事件处理程序的按钮。当我点击按钮时,事件处理程序不会触发。当我再次点击它时,它会触发。如果我再次点击它,它不会触发。再次点击它,它就会触发。什么可能导致这种交替触发?这是我的代码以及 UI 标记:

Button btnDownload = (Button) this.viewSpecGeneral.findViewById(R.id.btnDownload);

btnDownload.setOnClickListener(new OnClickListener()
{
  @Override
  public void onClick(View v)
  {
  }
}

XML:

<Button
    android:id="@+id/btnDownload"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentRight="true"
    android:layout_alignTop="@id/lblFileSize"
    android:layout_marginLeft="15dp"
    android:layout_marginTop="-2dp"
    android:background="@drawable/button_gradient_green"
    android:ellipsize="marquee"
    android:focusable="true"
    android:focusableInTouchMode="true"
    android:marqueeRepeatLimit="marquee_forever"
    android:minWidth="110dp"
    android:padding="10dp"
    android:scrollHorizontally="true"
    android:singleLine="true"
    android:text="@string/lbl_Download"
    android:textColor="#486b3f"
    android:textSize="18sp"
    android:textStyle="bold" />
4

1 回答 1

1

我刚刚删除了 focusable 和 focusableInTouchMode ,问题就消失了。

于 2012-10-30T15:48:13.787 回答