I want to create an activity that stays always on top (like the modal windows or task manager in Windows) of the others activities. How can I do this on Android? Thanks
|
|
You can't. As this is defined in the Android system. |
|||||||||||
|
|
You can use the following code in the overridden onStop method of your activity:
Beauty problem: your activity will pop-up again if any other activity trying to claim the focus. So it's not a modal window. And it's dangerous! You wont be able to handle the Android GUI, you'll be able to control only your application GUI. For instance switch on-off debug mode, kill application (only over ADB), system settings, etc. If you have switched off the ADB and combined it with autostart mechanism then you'll be in trap. So you won't be popular if you share it with Play :) |
|||
|
|
|
Depending on what exactly you are trying to do, you might be happy with windows that stay on top of other Activities. Apps like Super Video client & Floating Notes are able to display floating windows above other activities. These questions might point you in the right direction: |
||||
|
|