hi, I am trying to pop up dialog from run method it gives me exception that Looper.prepare not called ,when i call the same method i dont get any exception but there is no pop up dialog shown on the console .As i have used handler in this way ,
handler = new Handler() { public void handleMessage(Message msg) { showDialog(DIALOG1_KEY); // process incoming messages here } };
i am not getting any exception again but still no luck can any body tell me where i am doing things wrong. Thnx in advance.