I have an app (LWUIT, Java Me). When I run the app on device, it occupies the complete screen.
But I want the top panel (notification bar of device) to be visible.
What are the solutions? Are there any settings for lwuit?
I have an app (LWUIT, Java Me). When I run the app on device, it occupies the complete screen.
But I want the top panel (notification bar of device) to be visible.
What are the solutions? Are there any settings for lwuit?
Copyright © 2021 Jogjafile Inc.
In J2ME/LWUIT you need to find the current canvas and just call
setFullScreenMode(false)or alternatively enable the native commands (viaDisplay.setCommandBehavior).I would recommend against this since the result would look/behave radically differently between devices.