TOLERANCE DATA 2009.1 GREEK Free Download . 2008, 08:13 PM. herminia-filia to download: 146185. 2. Radio Frequency Integrated Circuits. Functional Tolerances. . . January 4, 2014. Tolerances.. TOLERANCE DATA 2009.1 GREEK. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . Q: Activity is stopping when i press back button i want to show few activities one after another, so when i select second activity it should not be visible when i press back button then it should return to the first activity this is my code package com.androidz.researchapp; import android.os.Bundle; import android.app.Activity; import android.view.Menu; public class FirstActivity extends Activity { /** * Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); } @Override public boolean onCreateOptionsMenu(Menu menu) { // Inflate the menu; this adds items to the action bar if it is present. getMenuInflater().inflate(R.menu.first, menu); return true; } } package com.androidz.researchapp; import android.app.Activity; import android.content.Intent; import android.os.Bundle; public class SecondActivity extends Activity { /** * Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); } @Override protected void onStop() { // TODO Auto-generated method stub super.onStop(); finish(); } } this is my manifest f30f4ceada
Related links:
Comentarios