My code scenario is like this :
public void keyPressed(int keyAction, int keyCode) {
if(keyCode==UICanvas.FIRE_KEY) {
new Thread(this).start();
}
}
public void run() {
ProgressBar.Start(" Message ") ; // it contains Timer
Gprshandler.send() // it will send request to the server ;
}
This is working in All mobile phones except 60 series mobiles i.e Nokia e5 , Nokia c5 ..
I think all these mobiles are supported for Minimizing applications.
i have searched in all forums to findout solution for this type of problem . But i dint get solution.
My exact Problem is run method is not being invoked at all in those mobiles.
i hope and wish i will get solution for this problem in this forum .

Reply With Quote



