Stop Android Notification Bar From Appearing on Touch Events
I need help removing or modifying the correct motion or touch events from the services.jar that call the notification bar to appear. I have a full screen application that keeps getting interrupted by the appearance of the notification bar. I understand I开发者_如何学编程 won't be able to do this at the application level but need to decompile the services.jar and edit the code directly.
Perhaps I'm way off base but, I think this is what you are looking for:
<application
android:icon="@drawable/icon"
android:label="@string/app_name"
>
<activity
android:name=".WhateverYourAppIs"
android:label="@string/app_name"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
...
if you go here
and just control-f for fullscreen
, it will show you all of the fullscreen options that are included with android. you just have to replace the _
with .
精彩评论