Android:setOnClickListener不会在每个其他点击触发

时间:2012-10-30 15:33:01

标签: android button click

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

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" />

1 个答案:

答案 0 :(得分:1)

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