Blackberry Storm - focus issue on bitmap field
Posted
by SWATI
on Stack Overflow
See other posts from Stack Overflow
or by SWATI
Published on 2010-03-10T11:50:01Z
Indexed on
2010/03/12
11:37 UTC
Read the original article
Hit count: 477
in my screen there are 3 managers h1 h2 bmpf = new BitmapField
added in order like this as
backgroundmanager.add(h1)
backgroundmanager.add(bmpf)
backgroundmanager.add(h2)
add(background manager);
protected boolesn navigationClick()
{
int index1 = h1.getFieldWithFocusIndex();
int index2 = h2.getFieldWithFocusIndex();
return true;
}
mow i get the focus index of all focussable fields in managers h1 and h2
but i cant get index of the bitnmapfield on focus i need to execute some code on its click
what to do
© Stack Overflow or respective owner