0

ドラッグ アンド ドロップを実装する非常に単純な Android アプリ (Eclipse と Android 4.0.2、API 15 を使用) を作成しようとしています。別の ImageView にドラッグ アンド ドロップする必要がある ImageView があります。しかし、私は何らかの問題を抱えているようです。アプリは正しくコンパイルされますが、エミュレーターと実際のデバイスで実行すると強制終了します。私のコードには 3 つのクラスがあります。1 つは (唯一の) アクティビティ用、もう 1 つは「ドラッグ可能な」イメージ リスナー用、もう 1 つは「ターゲット」イメージ リスナー用です。

アクティビティ:

public class MainActivity extends Activity {

    ImageView imageToBeDragged = (ImageView)findViewById(R.id.imagetodrag);
    ImageView targetImage = (ImageView)findViewById(R.id.target);

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        imageToBeDragged.setOnTouchListener(new ChoiceTouchListener());
        targetImage.setOnDragListener(new ChoiceDragListener());
    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.main, menu);
        return true;
    }
}

ドラッグ可能なリスナー:

public final class ChoiceTouchListener implements OnTouchListener {

    @Override
    public boolean onTouch(View view, MotionEvent motionEvent) {
        if (motionEvent.getAction() == MotionEvent.ACTION_DOWN) {
            ClipData data = ClipData.newPlainText("", "");
            DragShadowBuilder shadowBuilder = new View.DragShadowBuilder(view);
            //start dragging the item touched
            view.startDrag(data, shadowBuilder, view, 0);
            return true;
        }
        else {
            return false;
        }
    }
}

対象リスナー:

public class ChoiceDragListener implements OnDragListener {

    @Override
    public boolean onDrag(View v, DragEvent event) {
        switch (event.getAction()) {
        case DragEvent.ACTION_DRAG_STARTED:
            //no action necessary
            break;
        case DragEvent.ACTION_DRAG_ENTERED:
            //no action necessary
            break;
        case DragEvent.ACTION_DRAG_EXITED:
            //no action necessary
            break;
        case DragEvent.ACTION_DROP:
            //handle the dragged view being dropped over a target view
            View view = (View) event.getLocalState();
            //stop displaying the view where it was before it was dragged
            view.setVisibility(View.INVISIBLE);
            //view dragged item is being dropped on
            ImageView dropTarget = (ImageView) v;
            //view being dragged and dropped
            ImageView dropped = (ImageView) view;
            //Dim the target image when the other ImageView is dropped on it
            dropTarget.setAlpha(100);
            break;
        case DragEvent.ACTION_DRAG_ENDED:
            //no action necessary
            break;
        default:
            break;
        }
        return true;
    }
}

エラーの原因は何ですか?

ありがとう!

4

1 に答える 1