如何在GridView子视图中处理补间事件

时间:2011-08-03 12:32:29

标签: android gridview

应用程序有一个带有图像的GridView。当用户按图像时 - 循环播放声音。当用户发布图像时 - 声音必须停止播放。

我找不到处理发布事件的方法。

2 个答案:

答案 0 :(得分:0)

在适配器类的getview方法中编写触摸事件。它会起作用。

答案 1 :(得分:0)

public boolean onTouch(View arg0, MotionEvent e) {
switch(e.getAction()){

    case(MotionEvent.ACTION_DOWN):
        //the user put his finger down on screen
    break;

    case(MotionEvent.ACTION_MOVE):
        //the user is moving with his finger down
    break;

    case(MotionEvent.ACTION_UP):
        //the users finger is off the screen
    break;

    }
}