d55d5943
aarnaude
resolution Bravo
|
1
2
|
package tonio.noa;
|
713264a5
aarnaude
ajout drag n drop...
|
3
|
import android.content.ClipData;
|
4d5786fb
aarnaude
ajout scene 3 : d...
|
4
|
import android.content.Intent;
|
713264a5
aarnaude
ajout drag n drop...
|
5
|
import android.os.Build;
|
d55d5943
aarnaude
resolution Bravo
|
6
|
import android.os.Bundle;
|
713264a5
aarnaude
ajout drag n drop...
|
7
8
|
import android.view.DragEvent;
import android.view.MotionEvent;
|
d55d5943
aarnaude
resolution Bravo
|
9
|
import android.view.View;
|
99fbb132
aarnaude
resolution bug dr...
|
10
|
import android.widget.ImageView;
|
d55d5943
aarnaude
resolution Bravo
|
11
12
13
14
15
|
/**
* Created by psyk on 09/01/18.
*/
|
99fbb132
aarnaude
resolution bug dr...
|
16
|
public class TutorialScene2Activity extends MyPlayActivity implements View.OnTouchListener, View.OnDragListener {
|
d55d5943
aarnaude
resolution Bravo
|
17
18
19
|
@Override
protected void onCreate(Bundle savedInstanceState) {
|
d55d5943
aarnaude
resolution Bravo
|
20
|
super.onCreate(savedInstanceState);
|
2db7566f
aarnaude
modification de M...
|
21
|
lanceConsigne("J'ai encore besoin de toi !\nMet le rectangle bleu sur le rouge.");
|
c13d9bc3
aarnaude
activity consigne...
|
22
23
24
25
26
27
|
}
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
setContentView(R.layout.tutorial2_display);
|
713264a5
aarnaude
ajout drag n drop...
|
28
|
findViewById(R.id.blue_rectangle).setOnTouchListener(this);
|
99fbb132
aarnaude
resolution bug dr...
|
29
30
|
findViewById(R.id.blue_rectangle).setOnDragListener(this);
findViewById(R.id.red_rectangle).setOnDragListener(this);
|
c13d9bc3
aarnaude
activity consigne...
|
31
|
// do your stuff here after SecondActivity finished.
|
713264a5
aarnaude
ajout drag n drop...
|
32
33
|
}
|
c13d9bc3
aarnaude
activity consigne...
|
34
|
|
713264a5
aarnaude
ajout drag n drop...
|
35
36
37
|
@Override
public boolean onTouch(View view, MotionEvent event) {
if (event.getAction() == MotionEvent.ACTION_DOWN) {
|
713264a5
aarnaude
ajout drag n drop...
|
38
|
|
99fbb132
aarnaude
resolution bug dr...
|
39
|
View.DragShadowBuilder shadowBuilder = new View.DragShadowBuilder(view);
|
713264a5
aarnaude
ajout drag n drop...
|
40
41
42
43
44
45
46
|
ClipData data = ClipData.newPlainText("id", view.getResources().getResourceEntryName(view.getId()));
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
view.startDragAndDrop(data, shadowBuilder, view, 0);
} else {
view.startDrag(data, shadowBuilder, view, 0);
}
|
713264a5
aarnaude
ajout drag n drop...
|
47
|
return true;
|
99fbb132
aarnaude
resolution bug dr...
|
48
49
|
} else
return false;
|
713264a5
aarnaude
ajout drag n drop...
|
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
}
@Override
public boolean onDrag(View v, DragEvent event) {
switch (event.getAction()) {
// signal for the start of a drag and drop operation
case DragEvent.ACTION_DRAG_STARTED:
// do nothing
break;
// the drag point has entered the bounding box of the View
case DragEvent.ACTION_DRAG_ENTERED:
// do nothing
break;
// the user has moved the drag shadow outside the bounding box of the View
case DragEvent.ACTION_DRAG_EXITED:
// do nothing
break;
// the drag and drop operation has concluded
case DragEvent.ACTION_DRAG_ENDED:
|
713264a5
aarnaude
ajout drag n drop...
|
72
73
74
75
|
break;
//drag shadow has been released,the drag point is within the bounding box of the View
case DragEvent.ACTION_DROP:
|
99fbb132
aarnaude
resolution bug dr...
|
76
|
//handle the dragged view being dropped over a target view
|
713264a5
aarnaude
ajout drag n drop...
|
77
|
View view = (View) event.getLocalState();
|
4d5786fb
aarnaude
ajout scene 3 : d...
|
78
|
if (v == findViewById(R.id.red_rectangle)) {
|
99fbb132
aarnaude
resolution bug dr...
|
79
80
81
82
83
84
85
86
|
//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;
dropTarget.setBackgroundColor(dropped.getSolidColor());
bravoPage(v);
|
713264a5
aarnaude
ajout drag n drop...
|
87
|
}
|
713264a5
aarnaude
ajout drag n drop...
|
88
89
90
91
|
break;
}
return true;
|
d55d5943
aarnaude
resolution Bravo
|
92
93
94
95
|
}
@Override
protected void next() {
|
4d5786fb
aarnaude
ajout scene 3 : d...
|
96
|
startActivity(new Intent(this, TutorialScene3Activity.class));
|
d55d5943
aarnaude
resolution Bravo
|
97
|
}
|
713264a5
aarnaude
ajout drag n drop...
|
98
|
|
d55d5943
aarnaude
resolution Bravo
|
99
|
}
|