在模拟器中测试触摸功能
我尝试开发一个Android应用程序。我有以下代码:
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
CardImage = (ImageView)findViewById(R.id.CardImage);
CardImage.setOnTouchListener(this);
}
public boolean onTouch(View v, MotionEvent event)
{
if(event.getAction() == MotionEvent.ACTION_UP)
{
System.out.println("Touch!");
}
return true;
}
如何在模拟器中调试Ontouch功能?我尝试用鼠标拖动图像切换,但没有任何反应。
谢谢你的帮助!
I try to develop a App for android. I have the following code:
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
CardImage = (ImageView)findViewById(R.id.CardImage);
CardImage.setOnTouchListener(this);
}
public boolean onTouch(View v, MotionEvent event)
{
if(event.getAction() == MotionEvent.ACTION_UP)
{
System.out.println("Touch!");
}
return true;
}
How can i debug the Ontouch function in the emulator? I tried to drag the image switch the mouse but nothing happend.
Thanks for you help!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
试试这个代码(注意:未经测试)
Try this code (Note : not tested)
它刚刚与以下代码一起使用。
It has just worked with the following code.