Remove Android title bar - Cordova

0

I'm creating an Android app for Cordova.

When you open the APP it will appear a title bar, some devices in blue, others in black with the title. as follows:

I changed the title and misconfigured the icon for reasons of company secrecy

This screen always appears when I start the APP. Is there a setting to prevent this?

    
asked by anonymous 26.12.2017 / 14:05

1 answer

0

Try this in your activity.

if (getSupportActionBar() != null)
    getSupportActionBar().hide();

So the ActionBar will be hidden.

    
26.12.2017 / 17:26