我已经为我的地图设置了一个 TouchableWrapper 类来检测用户何时进行交互,代码最初设置为通过覆盖方法向活动发送通知。但是我的地图在一个片段中,我想接收这些覆盖。到目前为止,我不断收到空指针异常。
TouchableWrapper 类
public class TouchableWrapper extends FrameLayout {
private long lastTouched = 0;
private static final long SCROLL_TIME = 200L; // 200 Milliseconds, but you
// can adjust that to your
// liking
private UpdateMapAfterUserInterection updateMapAfterUserInterection;
// public TouchableWrapper(Context context) {
// super(context);
// // Force the host activity to implement the UpdateMapAfterUserInterection
// Interface
// // try {
// // updateMapAfterUserInterection = (UpdateMapAfterUserInterection)
// context;
// // } catch (ClassCastException e) {
// // throw new ClassCastException(context.toString() +
// " must implement UpdateMapAfterUserInterection");
// // }
// }
public TouchableWrapper(Context context, AttributeSet attrs) {
super(context, attrs);
}
public TouchableWrapper(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
}
public TouchableWrapper(Context context) {
super(context);
setUpdateMapAfterUserInterection(updateMapAfterUserInterection);
}
@Override
public boolean dispatchTouchEvent(MotionEvent ev) {
switch (ev.getAction()) {
case MotionEvent.ACTION_DOWN:
lastTouched = SystemClock.uptimeMillis();
break;
case MotionEvent.ACTION_UP:
final long now = SystemClock.uptimeMillis();
if (now - lastTouched > SCROLL_TIME) {
// Update the map
updateMapAfterUserInterection.onUpdateMapAfterUserInterection();
}
break;
}
return super.dispatchTouchEvent(ev);
}
// Map Activity must implement this interface
public interface UpdateMapAfterUserInterection {
public void onUpdateMapAfterUserInterection();
}
public void setUpdateMapAfterUserInterection(UpdateMapAfterUserInterection mUpdateMapAfterUserInterection) {
this.updateMapAfterUserInterection = mUpdateMapAfterUserInterection;
}
}
这是我尝试在包含我的地图的 Fragment 类中使用它的方法
TouchableWrapper tW = new TouchableWrapper(getActivity());
tW.setUpdateMapAfterUserInterection(new UpdateMapAfterUserInterection() {
@Override
public void onUpdateMapAfterUserInterection() {
Log.d("MAP", "TOUCHED? YEP");
}
});
我怎样才能让它按照我想要的方式工作。