Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Possible Duplicate:
android - exit application code

I'm a beginner in android, I'm practicing a Project that have a 2 labels and 1 exit button. But when I run this project in android phone the exit button is not working, it won't exit at all.

How can I make exit button work?

share|improve this question
1  
Exit buttons just aren't part of the (intended) Android user experience. You press back or home, and just "Walk away" from the activity. – Chris Stratton May 16 '11 at 7:02

marked as duplicate by Sebastian Paaske Tørholm, Harry Joy, EboMike, Mark Trapp, Cody Gray May 16 '11 at 14:10

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

6 Answers

up vote 6 down vote accepted

Below used main.xml file

 <?xml version="1.0" encoding="utf-8"?>
 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TextView android:layout_width="fill_parent"
    android:layout_height="wrap_content" android:id="@+id/txt1" android:text="txt1" />
<TextView android:layout_width="fill_parent"
    android:layout_height="wrap_content" android:id="@+id/txt2"   android:text="txt2"/>
<Button android:layout_width="fill_parent"
    android:layout_height="wrap_content" android:id="@+id/btn1"
    android:text="Close App" />
  </LinearLayout>

and text.java file is below


import android.app.Activity;

import android.os.Bundle;

import android.view.View;

import android.view.View.OnClickListener;

import android.widget.Button;

public class testprj extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);

    Button btn1 = (Button) findViewById(R.id.btn1);
    btn1.setOnClickListener(new OnClickListener() {

        @Override
        public void onClick(View v) {
            // TODO Auto-generated method stub
            finish();
            System.exit(0);
        }
    });
    }
 }

share|improve this answer
where should I put that code in Android, I mean is it in res, or in src, or in srring.xml? I am really newbie in Android.. – Thinkerbelle May 16 '11 at 7:07
wait for 5 min i will give you code. – Nik.... May 16 '11 at 7:11
Thanks.. I'll update here whatever the output be.. – Thinkerbelle May 16 '11 at 8:02
@Missy Have you tried? – Nik.... May 16 '11 at 10:25
Yup I tried and successfully it's working,especially when I installed the program at Android Device.. Thanks a lot.. My next step is I wanna make an Application that can send a message. :) thanks again. – Thinkerbelle May 17 '11 at 2:24

Don't ever put an Exit button on an Android app. Let the OS decide when to kill your Activity. Learn about the Android Activity lifecycle and implement any necessary callbacks.

share|improve this answer
1  
The only proper answer out of 4 responses here, imho. – EboMike May 16 '11 at 7:08
6 answers now, this is still the only right one (well, plus the one with the atrocious spelling). Scary to see how many people think terminating an app is a good idea. – EboMike May 16 '11 at 7:20
in a perfect world it's a bad idea. if you are not a perfect programmer (which is hard, esepcially in a far from perfect operating system) it can sometimes be good to exit the application so that users dont get stuck in a frozen state (some users might not know how to kill the application themselves). i have written an app for a client that basically wanted to restart the app everytime the user comes back to it. i decided to put an exit(0) function in to start fresh every run. – Joris Weimar Jun 18 '12 at 18:51
as an example (although this is not android): i have had numerous problems with the netflix app on my ipad. i would often get stuck in a frozen state. i had to manually exit the app to get back in. i'm not saying that "exit(0)" fixes this, but it certainly creates a better user experience in times of trouble (especially for novice users). the programmer could still be made aware of the issue by means of exception handling, etc – Joris Weimar Jun 18 '12 at 18:56
Check out this video from Android Developers which explains this in detail. youtube.com/watch?v=631T7B8HOv4 – zboarda Feb 6 at 12:23

i try this

Button btnexit = (Button)findviewbyId(btn_exit);

btnexit.setOnClicklistenr(new onClicklister(){

     @override
     public void onClick(View v){
            finish();
});
share|improve this answer
this.close_Button = (Button)this.findViewById(R.id.close);
   this.close_Button.setOnClickListener(new OnClickListener() {
     @Override
     public void onClick(View v) {
        finish();
     }
  });

finish () - Call this when your activity is done and should be closed. The ActivityResult is propagated back to whoever launched you via onActivityResult().

share|improve this answer
Thanks.. It help me a lot. :) – Thinkerbelle May 17 '11 at 5:13

You cannot exit your application. Using android.finish() won't exit the application, it just kills the activity. It's used when we don't want to see the previous activity on back button click. The application automatically exits when you switch off the device. The Android architecture does not support exiting the app. If you want, you can forcefully exit the app, but that's not considered good practice.

share|improve this answer

try this for close app

Activity.finish();
System.exit(0);
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.