Terminating of Android App

You must Login before you can answer or comment on any questions.

Hi,

my consists of a window (with exitOnClose) and a tabgroup.

With this code I try to terminate:

tabGroup.close();
loginWindow.close();
Ti.Android.currentActivity.finish();
But in taskmanager I see the app running in background.

Any ideas?

Rainer

1 Answer

When you close an app, it immediately goes into the background. The app manager was created specifically for doing things like terminating applications. You don't have control over that in your app.

Your Answer

Think you can help? Login to answer this question!