Ken Purcell
Ken Purcell

Reputation: 1

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.

Upvotes: 0

Views: 466

Answers (1)

dylan murphy
dylan murphy

Reputation: 1370

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 .

Upvotes: 2

Related Questions