我想在一个活动中调用MotionEvent.ACTION_DOWN,在另一个活动中调用MotionEvent.ACTION_UP

时间:2011-04-06 12:15:19

标签: java android

 ImageView ii = (ImageView)v.findViewById(R.id.picture);
ii.setOnTouchListener(new OnTouchListener()
{

@Override
public boolean onTouch(View v, MotionEvent e) {
ImageView i2 = (ImageView)findViewById(R.id.btn_imagetest);
if(e.getAction() == MotionEvent.ACTION_DOWN){

//call activity one
}
if (e.getAction() == MotionEvent.ACTION_UP)
{
//call activity 2
}


return true;
}

});

当我触摸图像'ii'时我应该去imgview(i2)(也可以是活动)当我离开imgview应该消失(回到相同的活动)..(注意:imgview覆盖全屏在电话中) 我不知道......如何继续。

1 个答案:

答案 0 :(得分:0)

如果我理解正确,您需要提供有关如何从当前活动启动另一个活动的信息。有关这方面的信息,请查看Android - finishing activity from another activity

另外,请查看the Notepad Tutorial,获取完整示例。