12-26-2012 07:08 AM
HI ALL, I Have in my blacberry application pictures in the first page.
In case picture is focused I want to show him a certain menu on click.
In case the picture is not focused I show him different menus on menu click.
can it be done? how?
12-26-2012 08:56 AM
Hi,
I can not understand what you try to say.
So ask your query in simple way.
So any one can give its answer easily.
Regards,
12-26-2012 09:00 AM
12-26-2012 02:28 PM
You need to override makeMenu() in your screen class.
In that method, you'll test for the specific condition and add (or not add) your menu item as required.
if (<condition>) {
menu.add(menuItem);
}