0

ユーザーからの操作があることを検出するマップの 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");
            }
        });

これを希望どおりに機能させるにはどうすればよいですか。

4

1 に答える 1