Blame view

app/src/main/java/tonio/noa/Hygiene5Activity.java 2.26 KB
c9866333   aarnaude   ajout scènes thèm...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
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
63
64
65
66
67
68
69
70
71
72
  package tonio.noa;
  
  import android.content.Intent;
  import android.graphics.Color;
  import android.os.Bundle;
  import android.view.MotionEvent;
  import android.view.View;
  import android.widget.ImageView;
  import android.widget.TextView;
  
  /**
   * Created by psyk on 24/01/18.
   */
  
  public class Hygiene5Activity extends MyPlayActivity implements View.OnTouchListener {
  
      private int win_counter = 0;
      private boolean done = false;
  
      @Override
      protected void onCreate(Bundle savedInstanceState) {
          super.onCreate(savedInstanceState);
          lanceConsigne("Maintenant tu dois toucher le shampoing, le savon et la brosse à dent.");
      }
  
      protected void onActivityResult(int requestCode, int resultCode, Intent data) {
          super.onActivityResult(requestCode, resultCode, data);
  
          setContentView(R.layout.hygiene5_display);
  
          TextView txtV = findViewById(R.id.cons_hyg5);
          smallCons = "Touche le shampoing, le savon et la brosse à dent.";
          txtV.setText(smallCons);
          setTts();
  
          findViewById(R.id.soap).setOnTouchListener(this);
          findViewById(R.id.shampoo).setOnTouchListener(this);
          findViewById(R.id.toothpaste).setOnTouchListener(this);
          findViewById(R.id.blue_toothbrush_pic).setOnTouchListener(this);
          findViewById(R.id.towel).setOnTouchListener(this);
          findViewById(R.id.toilet_bag).setOnTouchListener(this);
  
      }
  
      @Override
      public boolean onTouch(View view, MotionEvent event) {
          if (event.getAction() == MotionEvent.ACTION_DOWN) {
              if (view == findViewById(R.id.soap)
                      || view == findViewById(R.id.shampoo)
                      || view == findViewById(R.id.blue_toothbrush_pic)) {
                  view.setVisibility(View.INVISIBLE);
                  win_counter++;
              } else {
                  ImageView imageV = (ImageView) view;
                  imageV.setColorFilter(Color.GRAY);
                  view.setEnabled(false);
              }
              return true;
          }
          if (win_counter == 3 && !done) {
              done = true;
              this.bravoPage(null);
              return true;
          } else
              return false;
      }
  
      @Override
      protected void next() {
          startActivity(new Intent(this, Hygiene6Activity.class));
      }
  }