我有一个应用程序,在主页上有用于浏览该应用程序的按钮。
在该页面上,我有一个“退出”按钮,单击该按钮应将用户带到应用程序图标所在手机的主屏幕。
我怎样才能做到这一点?
我有一个应用程序,在主页上有用于浏览该应用程序的按钮。
在该页面上,我有一个“退出”按钮,单击该按钮应将用户带到应用程序图标所在手机的主屏幕。
我怎样才能做到这一点?
Answers:
Android的设计不支持选择退出应用程序,而是通过OS对其进行管理。您可以通过相应的Intent调出Home应用程序:
Intent intent = new Intent(Intent.ACTION_MAIN);
intent.addCategory(Intent.CATEGORY_HOME);
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(intent);
也许你可以尝试这样的事情
假设在我们的应用程序中,我们有许多活动(例如十个活动),我们需要直接退出此活动。我们可以做的是,创建一个意图并转到根活动,然后将意图中的标志设置为
intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
另外,向意图添加一些额外的内容,例如布尔值
intent.putExtra("EXIT", true);
然后在根活动,检查的值boolean
,并根据该呼叫结束(),在onCreate()
根活动
if (getIntent().getBooleanExtra("EXIT", false)) {
finish();
}
onNewIntent
。因为intnet.getExtras()保持为空。
RootActivity
而不是从堆栈中恢复它。检查此处以克服此stackoverflow.com/a/26258455/609782
System.exit(0);
可能就是您想要的。它将关闭整个应用程序,并带您进入主屏幕。
这对我来说很好。
关闭所有先前的活动,如下所示:
Intent intent = new Intent(this, MainActivity.class);
intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
intent.putExtra("Exit me", true);
startActivity(intent);
finish();
然后在MainActivity onCreate()方法中添加它以完成MainActivity
setContentView(R.layout.main_layout);
if( getIntent().getBooleanExtra("Exit me", false)){
finish();
return; // add this to prevent from doing unnecessary stuffs
}
首先使用方法完成您的应用程序 finish();
然后在onDestroy中添加以下行以删除Force close
android.os.Process.killProcess(android.os.Process.myPid());
super.onDestroy();
super.onDestroy()
后killProcess()
?会达到这条线吗?
有些活动实际上是您不想在按返回按钮时再次打开的,例如闪屏活动,欢迎屏幕活动,确认窗口。实际上,您无需在活动堆栈中使用它。您可以使用=>打开manifest.xml文件并添加属性来执行此操作
android:noHistory =“ true”
这些活动。
<activity
android:name="com.example.shoppingapp.AddNewItems"
android:label=""
android:noHistory="true">
</activity>
要么
有时您想通过按某些后退按钮来关闭整个应用程序。此处的最佳做法是打开主窗口,而不是退出应用程序。为此,您需要重写onBackPressed()方法。通常,此方法打开堆栈中的顶级活动。
@Override
public void onBackPressed(){
Intent a = new Intent(Intent.ACTION_MAIN);
a.addCategory(Intent.CATEGORY_HOME);
a.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(a);
}
要么
在按下后退按钮时,您要退出该活动,也不想将其添加到活动堆栈中。在onBackPressed()方法内调用finish()方法。它不会关闭整个应用程序。它将用于堆栈中的上一个活动。
@Override
public void onBackPressed() {
finish();
}
不建议退出您的Android应用程序。有关更多详细信息,请参见此问题。
用户始终可以通过“主页”按钮或在第一个活动中通过“后退”按钮退出您的应用程序。
(我尝试过以前的答案,但它们有些不足。例如,如果您未return;
完成活动后,则剩余的活动代码将运行。另外,您需要使用return编辑onCreate。如果您未运行super.onCreate()您将收到运行时错误)
说你有MainActivity
和ChildActivity
。
在ChildActivity内添加以下内容:
Intent intent = new Intent(ChildActivity.this, MainActivity.class);
intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
intent.putExtra("EXIT", true);
startActivity(intent);
return true;
在MainActivity的onCreate内添加以下内容:
@Override
public void onCreate(Bundle savedInstanceState) {
mContext = getApplicationContext();
super.onCreate(savedInstanceState);
if (getIntent().getBooleanExtra("EXIT", false)) {
finish();
return;
}
// your current codes
// your current codes
}
还有另一个选项,可以使用FinishAffinity方法关闭堆栈中与该应用程序相关的所有任务。
这是我所做的:
SomeActivity.java
@Override
public void onBackPressed() {
Intent newIntent = new Intent(this,QuitAppActivity.class);
newIntent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP|Intent.FLAG_ACTIVITY_CLEAR_TASK | Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(newIntent);
finish();
}
QuitAppActivity.java
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
finish();
}
基本上,您从堆栈中清除了所有活动并启动了工作QuitAppActivity
,这将完成任务。
我尝试使用以下代码片段退出应用程序,这对我有用。希望这对您有所帮助。我做了2个活动的小演示
第一次活动
public class MainActivity extends Activity implements OnClickListener{
private Button secondActivityBtn;
private SharedPreferences pref;
private SharedPreferences.Editor editer;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
secondActivityBtn=(Button) findViewById(R.id.SecondActivityBtn);
secondActivityBtn.setOnClickListener(this);
pref = this.getSharedPreferences("MyPrefsFile", MODE_PRIVATE);
editer = pref.edit();
if(pref.getInt("exitApp", 0) == 1){
editer.putInt("exitApp", 0);
editer.commit();
finish();
}
}
@Override
public void onClick(View v) {
switch (v.getId()) {
case R.id.SecondActivityBtn:
Intent intent= new Intent(MainActivity.this, YourAnyActivity.class);
startActivity(intent);
break;
default:
break;
}
}
}
您的其他任何活动
public class YourAnyActivity extends Activity implements OnClickListener {
private Button exitAppBtn;
private SharedPreferences pref;
private SharedPreferences.Editor editer;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_any);
exitAppBtn = (Button) findViewById(R.id.exitAppBtn);
exitAppBtn.setOnClickListener(this);
pref = this.getSharedPreferences("MyPrefsFile", MODE_PRIVATE);
editer = pref.edit();
}
@Override
public void onClick(View v) {
switch (v.getId()) {
case R.id.exitAppBtn:
Intent main_intent = new Intent(YourAnyActivity.this,
MainActivity.class);
main_intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
startActivity(main_intent);
editer.putInt("exitApp",1);
editer.commit();
break;
default:
break;
}
}
}
我用观察者模式做到了。
观察者界面
public interface Observer {
public void update(Subject subject);
}
基础科目
public class Subject {
private List<Observer> observers = new ArrayList<Observer>();
public void attach(Observer observer){
observers.add(observer);
}
public void detach(Observer observer){
observers.remove(observer);
}
protected void notifyObservers(){
for(Observer observer : observers){
observer.update(this);
}
}
}
子主题实现退出方法
public class ApplicationSubject extends Subject {
public void exit(){
notifyObservers();
}
}
您的应用程序应该对其进行扩展的MyApplication
public class MyApplication extends Application {
private static ApplicationSubject applicationSubject;
public ApplicationSubject getApplicationSubject() {
if(applicationSubject == null) applicationSubject = new ApplicationSubject();
return applicationSubject;
}
}
基本活动
public abstract class BaseActivity extends Activity implements Observer {
public MyApplication app;
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
app = (MyApplication) this.getApplication();
app.getApplicationSubject().attach(this);
}
@Override
public void finish() {
// TODO Auto-generated method stub
app.getApplicationSubject().detach(this);
super.finish();
}
/**
* exit the app
*/
public void close() {
app.getApplicationSubject().exit();
};
@Override
public void update(Subject subject) {
// TODO Auto-generated method stub
this.finish();
}
}
让我们测试一下
public class ATestActivity extends BaseActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
close(); //invoke 'close'
}
}
如果要退出应用程序,请将此代码放在您的函数下
public void yourFunction()
{
finishAffinity();
moveTaskToBack(true);
}
//For an instance, if you want to exit an application on double click of a
//button,then the following code can be used.
@Override
public boolean onKeyDown(int keyCode, KeyEvent event) {
if (keyCode == KeyEvent.KEYCODE_BACK && event.getRepeatCount() == 2) {
// do something on back.
From Android 16+ you can use the following:
finishAffinity();
moveTaskToBack(true);
}
return super.onKeyDown(keyCode, event);
}
100%正常。这是退出应用程序onClick的代码(方法)
Button exit = (Button)findViewById(R.id.exitbutton);
exit.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
finish();
android.os.Process.killProcess(android.os.Process.myPid());
System.exit(1);
Toast.makeText(getApplicationContext(), "Closed Completely and Safely", Toast.LENGTH_LONG).show();
}
});
也许我的代码可以帮助(Main_Activity.java):
@Override
protected void onDestroy() {
super.onDestroy();
this.finish();
exit(0);
}
@Override
public boolean onKeyDown(int keyCode, KeyEvent event) {
switch(keyCode) {
case KeyEvent.KEYCODE_BACK:
AlertDialog.Builder builder = new AlertDialog.Builder(this);
builder.setTitle("My application").setMessage("Keep playing?").setIcon(R.drawable.icon);
// Go to backgroung
builder.setPositiveButton("OK", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) { moveTaskToBack(true); }
});
// Exit from app calling protected void onDestroy()
builder.setNegativeButton("CLOSE APPLICATION", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) { onDestroy(); }
});
// Close this dialog
builder.setNeutralButton("CANCEL", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) { dialog.cancel(); }
});
AlertDialog dialog = builder.create();
dialog.show();
return true;
}
return false;
}
如果要退出应用程序。然后在按钮按下事件中使用此代码。 喜欢:
public void onBackPressed()
{
moveTaskToBack(true);
android.os.Process.killProcess(android.os.Process.myPid());
System.exit(1);
}