In my app I am using an asynctask for an operation.But I am also using a handler to cancel my task in case of time-out.
this is my handler operation
Handler mHandler = new android.os.Handler() {
@Override
public void handleMessage(Message msg) {
task.cancel(true);
}
};
Message msg = new Message();
msg.arg1 = 0;
mHandler.sendMessageDelayed(msg, 1000);
and this is my asynctask start
final findIpTask task = new findIpTask(1, 2);
task.execute();
and in my asynctask I have
protected void onCancelled() {
running = false;
dialog.dismiss();
//some alert dialog for time-out
in 2.33 emulator it is working fine.but when I run my app on a 4.0 emulator it doesn't stop.does anybody know why and have a solution.
