10-31-2012 02:00 AM
Hi I am using a ButtonField in my screen class and added ChangeListener to it and provided required action in
fieldChanged(Field field, int context)
method. But whenever I click on a button a Dialog prompts reading two options as Switch Application and Full Menu.
I think there is some method that needs to be overridden to avoid this. I am getting this result when I am running my app in device with OS 5.0 but it works fine on Simulator (7.0).
Solved! Go to Solution.
10-31-2012 02:11 AM - edited 10-31-2012 02:34 AM
Well i think the problem still persists:
I have overrridden the following method
protected boolean navigationClick(int status, int time) {
return true;
} where navigation click event is consumed. Well by doing this now prompt is not appearing.
But now control not entering
fieldChanged(Field field, int context)
So action on click is not performed. This is happening in Curve 8900 (5.0).
10-31-2012 04:27 AM