0

嗨,我已经在我的服务类中实现了 ontouchlistener 并尝试获取在 android 2.3 上运行良好但不适用于更高版本的触摸事件。我正在努力解决这个问题,但即使在阅读了stackoverflow中的大量文档后我也没有得到任何解决方案,这是代码..请帮我解决这个问题

在 onCreate 方法中我定义了图像按钮

    ImageButton imageButton=new ImageButton(this);
imageButton.setBackgroundColor(Color.TRANSPARENT);
imageButton.setOnTouchListener(this);

    @Override public boolean onTouch(View arg0, MotionEvent arg1) {
Toast.makeText(getApplicationContext(), "Double touched "+DoubleTouch, 1000).show();
return false;
}
4

1 回答 1

0

你想使用代码imageButton.setOnTouchListener(youActivityname.this);

于 2013-02-06T11:21:09.220 回答