IfeFromKolopay
IfeFromKolopay

Reputation: 61

How to remove the toolbar from Android app codenameone (make it fullscreen)

I have tried everything but this toolbar does not want to leave I have even tried setting the color to black so it just rhymes with the background of the app with no avail.

I have tried hiding the toolbar globally that didn't work then I tried hiding the toolbar for just the form that still didn't work.

How do I resolve this? screenshot of app:
screenshot of app

Upvotes: 0

Views: 206

Answers (1)

Shai Almog
Shai Almog

Reputation: 52760

Try the following:

getToolbar().setUIID("Container");

If this doesn't work open the Component Inspector tool from the simulator and inspect the elements within. Look at the top area of the screen and see which UIID/Component is taking up that space.

Upvotes: 1

Related Questions