The user can launch other installed applications from my application and back to my activity when exiting launched application.I want to disable notification bar(showed status of wifi,gps,bluetooth etc...) or pulling down of notification bar throughout my application .
It works for my application when setting requestWindowFeature(Window.FEATURE_NO_TITLE);
But when launching other applications from my application ,possible to pull down Notification bar.
Is there any way to handle this?
Is it possible remove all notifications from Notification bar while my application is running?
How to make Notification bar not accessible from my application(a service is running throughout the application for checking currently running applications)?
Thanks in Advance