6
On an Android device, where many app’s are running, I would like to enable an interface where the user can see which app’s installed and which ones are running at the moment, being possible to start, pause and uninstall an app.
- Where should I start?
- What classes, methods, or interfaces are responsible for listing app’s in order to track them?
Android is a system that cares a lot for stability and security, and so the possibility of closing application can already be discarded, the maximum you can is close background tasks (Activity Manager) pause I think it’s not as if not by the user himself and start you can take a look here: http://stackoverflow.com/questions/3872063/launch-an-application-from-another-application-on-android I believe that a complete reference to what you can do is the Activity Manager: http://developer.android.com/reference/android/app/ActivityManager.html
– Olimon F.
See installed apps, stop them and uninstall them you can do by option
Configurações > Aplicativos
. Other than that, I think that only with a "rooteado" device it would be possible to create another application to do the same.– utluiz
"Android is a system that values stability and security"...
– Jorge B.