Commit 50ea42a1a5f193f6e057fa252b3d1e46308f8b4c
1 parent
9e7a63d8
modification notification & gitignore pour .apk
Showing
2 changed files
with
21 additions
and
2 deletions
Show diff stats
.gitignore
App10p5/app/src/main/java/net/plil/clubinfo/app10p5/MainActivity.java
... | ... | @@ -16,6 +16,7 @@ import android.util.Log; |
16 | 16 | import android.view.Menu; |
17 | 17 | import android.view.MenuItem; |
18 | 18 | import android.view.View; |
19 | +import android.widget.Toast; | |
19 | 20 | |
20 | 21 | import java.io.IOException; |
21 | 22 | |
... | ... | @@ -25,6 +26,7 @@ public class MainActivity extends AppCompatActivity { |
25 | 26 | private PendingIntent mPendingIntent; |
26 | 27 | private IntentFilter[] mFilters; |
27 | 28 | private String[][] mTechLists; |
29 | + private Toast mToast; | |
28 | 30 | |
29 | 31 | public void onResume() { |
30 | 32 | super.onResume(); |
... | ... | @@ -90,7 +92,9 @@ public class MainActivity extends AppCompatActivity { |
90 | 92 | public void onNewIntent(Intent intent) { |
91 | 93 | if (NfcAdapter.ACTION_TECH_DISCOVERED.equals(intent.getAction())) { |
92 | 94 | String id_carte = ByteArrayToHexString(intent.getByteArrayExtra(NfcAdapter.EXTRA_ID)); |
93 | - System.out.println("NFC Tag : " + id_carte); | |
95 | + mToast = Toast.makeText(getApplicationContext(), "ID Carte : " + id_carte, Toast.LENGTH_SHORT); | |
96 | + mToast.show(); | |
97 | + System.out.println("ID Carte : " + id_carte); | |
94 | 98 | |
95 | 99 | //Lecture des données |
96 | 100 | Tag tag = intent.getParcelableExtra(NfcAdapter.EXTRA_TAG); |
... | ... | @@ -123,9 +127,13 @@ public class MainActivity extends AppCompatActivity { |
123 | 127 | prenom = dataStr; |
124 | 128 | else if (i == 3) //Nom |
125 | 129 | nom = dataStr; |
130 | + mToast = Toast.makeText(getApplicationContext(), "Données lues : " + dataStr, Toast.LENGTH_SHORT); | |
131 | + mToast.show(); | |
126 | 132 | System.out.println("Données lues : " + dataStr); |
127 | 133 | } |
128 | 134 | } else { |
135 | + mToast = Toast.makeText(getApplicationContext(), "Erreur lors de la connection au secteur 12.", Toast.LENGTH_SHORT); | |
136 | + mToast.show(); | |
129 | 137 | System.out.println("Erreur lors de la connection au secteur 12."); |
130 | 138 | } |
131 | 139 | mfc.close(); |
... | ... | @@ -137,9 +145,20 @@ public class MainActivity extends AppCompatActivity { |
137 | 145 | login = prenom; |
138 | 146 | login.concat("."); |
139 | 147 | login.concat(nom); |
148 | + System.out.println("Prenom : " + prenom); | |
149 | + System.out.println("Nom : " + nom); | |
140 | 150 | } |
141 | 151 | else |
152 | + { | |
142 | 153 | System.out.println("Pas de connection possible à la technologie Mifare Classic."); |
154 | + mToast = Toast.makeText(getApplicationContext(), "Pas de connection possible à la technologie Mifare Classic.", Toast.LENGTH_SHORT); | |
155 | + mToast.show(); | |
156 | + } | |
157 | + | |
158 | + mToast = Toast.makeText(getApplicationContext(), "Login Lille 1 : " + login, Toast.LENGTH_SHORT); | |
159 | + mToast.show(); | |
160 | + System.out.println("Login Lille 1 : " + login); | |
161 | + | |
143 | 162 | |
144 | 163 | //Éxécution de la fonction |
145 | 164 | taFonction(id_carte, login); | ... | ... |