10-19-2010, 11:40 PM
|
#1 (permalink)
|
| New Member
Join Date: Dec 2008 Model: 8130 PIN: N/A Carrier: vodafone
Posts: 3
Post Thanks: 0 Thanked 0 Times in 0 Posts
| slide open/close disable menu bar Please Login to Remove! Hi
I am developing the application in which i am going to deploy on Blackberry 9800 device. In one of the screen i need to disable the menu bar. For that i used a Sensor to check whether the SLIDE_OPEN/SLIDE_CLOSE. If the slide is closed then i can able to disable all menus except show/hide keyboard options.
But if the slide is open, its showing EmptyMenu in the menu bar. i want to disable the Empty Menu option when the device is in slide open mode.
Sample code:
protected void makeMenu( Menu m, int ins )
{
if (Sensor.isSupported(Sensor.SLIDE))
{
int sliderState = Sensor.getState(Sensor.SLIDE);
switch (sliderState)
{
case Sensor.STATE_SLIDE_CLOSED:
m.deleteAll();
break;
case Sensor.STATE_SLIDE_OPEN:
??????
break;
}
}
}
Can anybody know how to do this?
Thanks
mindus |
| Offline
| |