在我的代碼中,一個按鈕的ontouch偵聽器被觸發兩次。 請在下面找到代碼。我正在使用Google API 2.2。Android - 觸摸監聽器被觸發兩次
在Java文件代碼....
submit_button = (Button)findViewById(R.id.submit);
submit_button .setOnTouchListener(new View.OnTouchListener()
{
public boolean onTouch(View arg0, MotionEvent arg1) {
int action=0;
if(action == MotionEvent.ACTION_DOWN)
{
startActivity(new Intent(First_Activity.this, Second_Activity.class));
finish();
}
return true;
}
});
請幫我解決這個問題。
感謝它的工作。 – Prem 2012-03-03 19:34:30