how to close whole application in android
本问题已经有最佳答案,请猛点这里访问。
Possible Duplicate:
Android: How to kill an application with all it's activities?
我尝试使用finish()。
但它只关闭当前活动而不是整个应用程序。
当另一个活动正在运行时,它会显示我完成上述活动时...
代码:
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 | public class third extends Activity{ Button btn_back, btn_finish; Intent intent2; Bundle b1; public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.third); intent2 = getIntent(); b1=intent2.getExtras(); String spin = b1.getString("name"); String gender = b1.getString("gender"); btn_back = (Button) findViewById(R.id.button1); btn_finish = (Button) findViewById(R.id.button2); Toast.makeText(third.this, spin +"" + gender , Toast.LENGTH_SHORT).show(); btn_back.setOnClickListener(new OnClickListener() { public void onClick(View v) { intent2 = new Intent (third.this,second.class); startActivity(intent2); } }); btn_finish.setOnClickListener(new OnClickListener() { public void onClick(View v) { finish(); } }); } |
}
使用以下代码行:
1 | System.exit(1); |
编辑
我第一次开始Android开发时就回答了这个问题:请不要使用它。 您可以尝试向Android应用程序添加退出按钮。