这是我的代码
import android.content.Context;
import android.util.AttributeSet;
import android.view.KeyEvent;
import android.view.MotionEvent;
import android.widget.Button;
public class MyLongPressCustomButton extends Button{
private InStock instock;
public MyLongPressCustomButton(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
}
public MyLongPressCustomButton(Context context, AttributeSet attrs) {
super(context, attrs);
}
public MyLongPressCustomButton(Context context) {
super(context);
}
public void setSampleLongpress(InStock sl) {
instock = sl;
}
@Override
public boolean onTouchEvent(MotionEvent event) {
cancelLongpressIfRequired(event);
return super.onTouchEvent(event);
}
@Override
public boolean onTrackballEvent(MotionEvent event) {
cancelLongpressIfRequired(event);
return super.onTrackballEvent(event);
}
@Override
public boolean onKeyUp(int keyCode, KeyEvent event) {
if ((keyCode == KeyEvent.KEYCODE_DPAD_CENTER)
|| (keyCode == KeyEvent.KEYCODE_ENTER)) {
cancelLongpress();
}
return super.onKeyUp(keyCode, event);
}
private void cancelLongpressIfRequired(MotionEvent event) {
if ((event.getAction() == MotionEvent.ACTION_CANCEL)
|| (event.getAction() == MotionEvent.ACTION_UP)) {
cancelLongpress();
}
}
private void cancelLongpress() {
if (instock != null) {
instock.cancelLongPress();
}
}
}
我需要用于多类,现在它只用于 InStock 类,如何更改我的多类代码?当我将 InStock 更改为 Activity 时,cancelLongpress() 方法未定义。
提前致谢 :)