salut j'ai un probléme au niveau mon code quand je clique sur bloquer compte par exemple il envoi un sms et moi j'ai pas encore confirmé mon opération voila mon code
Code : Sélectionner tout - Visualiser dans une fenêtre à part
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
public class Boitedialog extends Activity {
	public static int bloc;
	String D,B;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
 
LayoutInflater factory = LayoutInflater.from(this);
final View alertDialogView = factory.inflate(R.layout.dialog, null);
AlertDialog.Builder adb = new AlertDialog.Builder(this);
adb.setView(alertDialogView);
switch (bloc)
{case 0:
	adb.setTitle("voulez vous debloquer votre compte ");
	bloc=-1;
 
	 try {
 
	 D=DES.encrypt("1234", "D");
		} catch (Exception e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
 
		}
 
	String msg = D;
	EnvoiSms envoisms = new EnvoiSms();
	    envoisms.SendMessage(msg);
break;
 
case 1:
	adb.setTitle("voulez vous bloquer votre compte ");
	bloc=-1;
	 try {
 
		 B=DES.encrypt("1234", "B");
			} catch (Exception e) {
				// TODO Auto-generated catch block
				e.printStackTrace();
 
			}
 
		String msg1 = B;
		EnvoiSms envoisms1 = new EnvoiSms();
		    envoisms1.SendMessage(msg1);
	break;
}
 
adb.setIcon(android.R.drawable.ic_dialog_alert);
adb.setPositiveButton("OK", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which)
 
{finish();
EditText et = (EditText)alertDialogView.findViewById(R.id.EditText1);
Toast.makeText(Boitedialog.this, et.getText(), Toast.LENGTH_SHORT).show();
} });
adb.setNegativeButton("Annuler", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
 
finish();
} });
adb.show();
}
}