I want to launch from my application the activity recent apps, without holding on home button. How can i launch that dialog activity? Is that possible ?
Thank you very much.
I want to launch from my application the activity recent apps, without holding on
Share
No, it is not possible to do this. The OS does not provide access to this (and moreover, on Android 3.0+, the dialog has changed completely).
However, you could make your own dialog using
ActivityManager‘sgetRecentTasks, as well asDialog(or its subclasses), that would handle the same task.