gpt4 book ai didi

java - SurfaceView 中的 onTouchListener 类

转载 作者:太空狗 更新时间:2023-10-29 13:20:59 34 4
gpt4 key购买 nike

我正在尝试实现一个 onTouchListener,这样我就可以从不同的类中调用它...

public OnTouchListener nextListener = new OnTouchListener() {
@Override
public boolean onTouchEvent(MotionEvent event) {
if (event.getAction() == MotionEvent.ACTION_DOWN) {
//stuff

}

return true;

}

};

它一直向我抛出这个错误。 “派生自 onTouchListener 的类匿名类必须是抽象类或实现抽象方法”。我知道它很小,因为我之前让它工作过。

最佳答案

默认方法是调用 onTouch 而不是 onTouchEvent

public View.OnTouchListener nextListener = new View.OnTouchListener() {


public boolean onTouch(View v, MotionEvent event) {
if (event.getAction() == MotionEvent.ACTION_DOWN) {
//stuff

}

return true;
}
};

来自android api

From the android api

关于java - SurfaceView 中的 onTouchListener 类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29022975/

34 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com