| 12
 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
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 
 |  
 
public class accueil22 extends Activity {
 
	private static final int REQUEST_CODE = 2;
	private static final int RESULT_CLOSE_APPLICATION = 3;
	private Button afficher;
	 private Button cat1;
	    private Button cat2;
 
	    private Button cat3;
	    private Button cat4;
	    private Button cat5;
	    private Button home;
	 @Override
	    public void onCreate(Bundle savedInstanceState) {
	        super.onCreate(savedInstanceState);
	        setContentView(R.layout.cat);
 
 
	        cat1=(Button) findViewById(R.id.cat1);
	         cat2=(Button) findViewById(R.id.cat2);
	         cat3=(Button) findViewById(R.id.cat3);
	        cat4=(Button) findViewById(R.id.cat4);
	         cat5=(Button) findViewById(R.id.cat5);
	         home=(Button) findViewById(R.id.home);
	        afficher=(Button) findViewById(R.id.afficher);
 
 
	        cat1.setOnClickListener(new OnClickListener() {
 
				@Override
				public void onClick(View v) {
					// TODO Auto-generated method stub
 
					 Bundle bundle = new Bundle();
						bundle.putString("cat","cevalab");
 
 
 
					Intent intent1 = new Intent().setClass(accueil22.this, DynamicGui2.class);
					intent1 = intent1.putExtras(bundle);
					startActivityForResult(intent1, REQUEST_CODE);
 
 
 
				}
 
 		 	 });
 
 
	        cat2.setOnClickListener(new OnClickListener() {
 
				@Override
				public void onClick(View v) {
					// TODO Auto-generated method stub
 
					 Bundle bundle = new Bundle();
						bundle.putString("cat","matrix");
 
 
 
						Intent intent2 = new Intent().setClass(accueil22.this, DynamicGui2.class);
						intent2 = intent2.putExtras(bundle);
						startActivityForResult(intent2, REQUEST_CODE);
 
 
				}
 
 		 	 });
 
 
	        cat3.setOnClickListener(new OnClickListener() {
 
				@Override
				public void onClick(View v) {
					// TODO Auto-generated method stub
 
					 Bundle bundle = new Bundle();
						bundle.putString("cat","chick program");
 
 
						Intent intent3 = new Intent().setClass(accueil22.this, DynamicGui2.class);
						intent3 = intent3.putExtras(bundle);
						startActivityForResult(intent3, REQUEST_CODE);
 
 
				}
 
 		 	 });
 
 
	        cat4.setOnClickListener(new OnClickListener() {
 
				@Override
				public void onClick(View v) {
					// TODO Auto-generated method stub
 
					 Bundle bundle = new Bundle();
						bundle.putString("cat","eggs");
 
 
 
						Intent intent4 = new Intent().setClass(accueil22.this, DynamicGui2.class);
						intent4 = intent4.putExtras(bundle);
						startActivityForResult(intent4, REQUEST_CODE);
 
 
				}
 
 		 	 });
	        cat5.setOnClickListener(new OnClickListener() {
 
				@Override
				public void onClick(View v) {
					// TODO Auto-generated method stub
 
					 Bundle bundle = new Bundle();
						bundle.putString("cat","prodceva");
 
 
 
						Intent intent5 = new Intent().setClass(accueil22.this, DynamicGui2.class);
						intent5 = intent5.putExtras(bundle);
						startActivityForResult(intent5, REQUEST_CODE);
 
						setResult(RESULT_CLOSE_APPLICATION);
			        	finish();
				}
 
 		 	 });
 
 
 
 
 
 
 
 
	    	afficher.setOnClickListener(new OnClickListener() {
	 			@Override
	 			public void onClick(View arg0) {		
 
 
 
	 				Intent intent6 = new Intent().setClass(accueil22.this,DynamicGuiGlobal.class);
 
					startActivityForResult(intent6, REQUEST_CODE);
					setResult(RESULT_CLOSE_APPLICATION);
		        	finish();
	 			}
	 		});
 
	    	this.setResult(RESULT_CLOSE_APPLICATION);
 
 
	 }
 
	 protected void onActivityResult(int requestCode, int resultCode,
		        Intent data) {
		    if (requestCode == REQUEST_CODE) {
		        if (resultCode == RESULT_CLOSE_APPLICATION) {
		            this.finish();
		        }
		    }
		}
 
	    @Override
	    public boolean onKeyDown(int keyCode, KeyEvent event)  {
	        if (keyCode == KeyEvent.KEYCODE_HOME && event.getRepeatCount() == 0) {
	        	this.setResult(RESULT_CLOSE_APPLICATION);
	        	this.finish();
	            return true;
	        }
 
	        return super.onKeyDown(keyCode, event);
	    }
 
 
 
 
 
} | 
Partager