Remove title bar Android - Cordova

Asked

Viewed 36 times

0

I’m creating an Android app by Cordova.

When opening the APP it appears a title bar, in some devices in blue, in others in black with the title. as follows:

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

título

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

1 answer

0

Try this on your Activity.

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

Thus the ActionBar will be hidden.

  • I think this is not a viable solution for the application, since the application is on Fullscreen. Actionbar is not the problem, this bar that appears there is before the application runs, as soon as I click on it, it looks like this bar as title and icon. This code did not work.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.