aaefb55f
aarnaude
scène 4 : débogguée
|
1
2
3
4
|
package tonio.noa;
import android.content.Intent;
import android.os.Bundle;
|
4fbbe27a
aarnaude
ajout de la fonct...
|
5
|
import android.speech.tts.TextToSpeech;
|
aaefb55f
aarnaude
scène 4 : débogguée
|
6
7
|
import android.view.MotionEvent;
import android.view.View;
|
4fbbe27a
aarnaude
ajout de la fonct...
|
8
|
import android.widget.TextView;
|
aaefb55f
aarnaude
scène 4 : débogguée
|
9
10
11
12
13
14
15
16
|
/**
* Created by psyk on 24/01/18.
*/
public class TutorialScene5Activity extends MyPlayActivity implements View.OnTouchListener {
private int win_counter = 0;
|
95306d09
aarnaude
résolution bug su...
|
17
|
private boolean done = false;
|
aaefb55f
aarnaude
scène 4 : débogguée
|
18
19
20
|
@Override
protected void onCreate(Bundle savedInstanceState) {
|
aaefb55f
aarnaude
scène 4 : débogguée
|
21
|
super.onCreate(savedInstanceState);
|
2db7566f
aarnaude
modification de M...
|
22
|
lanceConsigne("Cette fois\ntu dois cliquer sur les carrés verts!\nC'est ta dernière mission ;)");
|
aaefb55f
aarnaude
scène 4 : débogguée
|
23
24
25
26
27
28
29
|
}
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
setContentView(R.layout.tutorial5_display);
|
4fbbe27a
aarnaude
ajout de la fonct...
|
30
31
32
33
34
35
|
TextView txtV = findViewById(R.id.cons_tut5);
smallCons = "Clique sur les carrés verts.";
txtV.setText(smallCons);
setTts();
|
aaefb55f
aarnaude
scène 4 : débogguée
|
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
findViewById(R.id.blue_rectangle51).setOnTouchListener(this);
findViewById(R.id.blue_rectangle52).setOnTouchListener(this);
findViewById(R.id.blue_rectangle53).setOnTouchListener(this);
findViewById(R.id.blue_rectangle54).setOnTouchListener(this);
findViewById(R.id.red_rectangle51).setOnTouchListener(this);
findViewById(R.id.red_rectangle52).setOnTouchListener(this);
findViewById(R.id.red_rectangle53).setOnTouchListener(this);
findViewById(R.id.red_rectangle54).setOnTouchListener(this);
findViewById(R.id.green_rectangle51).setOnTouchListener(this);
findViewById(R.id.green_rectangle52).setOnTouchListener(this);
findViewById(R.id.green_rectangle53).setOnTouchListener(this);
findViewById(R.id.green_rectangle54).setOnTouchListener(this);
}
@Override
public boolean onTouch(View view, MotionEvent event) {
if (event.getAction() == MotionEvent.ACTION_DOWN) {
if (view == findViewById(R.id.green_rectangle51)
|| view == findViewById(R.id.green_rectangle52)
|| view == findViewById(R.id.green_rectangle53)
|| view == findViewById(R.id.green_rectangle54)) {
view.setVisibility(View.INVISIBLE);
win_counter++;
} else view.setBackgroundColor(0xff888888);
return true;
}
|
95306d09
aarnaude
résolution bug su...
|
63
64
|
if (win_counter == 4 && !done) {
done = true;
|
aaefb55f
aarnaude
scène 4 : débogguée
|
65
66
67
68
69
70
71
72
73
74
75
|
this.bravoPage(null);
return true;
} else
return false;
}
@Override
protected void next() {
this.backHome(null);
}
}
|