2015. 4. 1. 15:37
How to exit an android app using code?
You can call System.exit(); to get out of all the acivities.
submit=(Button)findViewById(R.id.submit);
submit.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View arg0) {
android.os.Process.killProcess(android.os.Process.myPid());
System.exit(1);
}
});
'JAVA > Android' 카테고리의 다른 글
[스크랩] Activity Flag (0) | 2015.04.13 |
---|---|
다른 어플 실행 (0) | 2015.04.01 |
안드로이드 Process Name 및 Id (666) | 2015.03.31 |
안드로이드 뷰 동적으로 마진주기 (0) | 2015.03.15 |
브로드 캐스트 리시버 기본 사용예제. (0) | 2015.01.13 |