I am creating a backup app in android using BackupManagerbut as backup actually occur at schedule time not promptly, I just want to know how can I show a message in dialogbox that onBackup()is get called and now your data is saved on google servers. The main problem is what the context of dialogbox should be??
so far I have tried this but when onBackup()was called it didnot display
AlertDialog.Builder builder = new AlertDialog.Builder(getApplicationContext());
builder.setTitle("BACKUP ALERT");
builder.setMessage("Your Backup has been processed");
builder.setPositiveButton("OK", null);
AlertDialog dialog = builder.show();
I wrote this in onBackup()method but it didnot display on my application. I want to show this message whenever backup occur and user opens my application or if he has already opened I want to display it no matter which activity is foreground that time or can someone give me the idea how to make it a notification in android notification bar.
There is an error on Logcat at the line where I created and showed the dialog..
12-28 13:22:52.722: E/JavaBinder(16540): *** Uncaught remote exception! (Exceptions are not yet supported across processes.)
12-28 13:22:52.722: E/JavaBinder(16540): java.lang.RuntimeException: Can't create handler inside thread that has not called Looper.prepare()
12-28 13:22:52.722: E/JavaBinder(16540): at android.os.Handler.<init>(Handler.java:121)
12-28 13:22:52.722: E/JavaBinder(16540): at android.app.Dialog.<init>(Dialog.java:107)
12-28 13:22:52.722: E/JavaBinder(16540): at android.app.AlertDialog.<init>(AlertDialog.java:118)
12-28 13:22:52.722: E/JavaBinder(16540): at android.app.AlertDialog$Builder.create(AlertDialog.java:971)
12-28 13:22:52.722: E/JavaBinder(16540): at com.vahzay.android.smstrove.MySmsBackupAgent1.onBackup(MySmsBackupAgent1.java:233)
12-28 13:22:52.722: E/JavaBinder(16540): at android.app.backup.BackupAgent$BackupServiceBinder.doBackup(BackupAgent.java:490)
12-28 13:22:52.722: E/JavaBinder(16540): at android.app.IBackupAgent$Stub.onTransact(IBackupAgent.java:80)
12-28 13:22:52.722: E/JavaBinder(16540): at android.os.Binder.execTransact(Binder.java:338)
12-28 13:22:52.722: E/JavaBinder(16540): at dalvik.system.NativeStart.run(Native Method)
and my code for the dialogbox is:
new AlertDialog.Builder(getApplicationContext())
.setMessage("Backup Alert")
.setPositiveButton("Ok", new DialogInterface.OnClickListener()
{
public void onClick(DialogInterface arg0, int arg1)
{
Toast.makeText(getApplicationContext(), "Your SMS Record that you requested to backup earlier is now processed", Toast.LENGTH_LONG).show(); //-->233
}
}).create().show();
}

bmgrandroid tool to callonBackup()immediately and as soon as it reached the.create().show()line it caught errors,above this everything is working fine.. – aneela safdar Dec 28 '12 at 8:36Can't create handler inside thread that has not called Looper.prepare()line means you are trying to show alert from bg thread. solution is userunOnUiThreadfor showing alert from bg thread – ρяσѕρєя K Dec 28 '12 at 8:38Handler Runnableto call suchUI componentfrom thenon-UI thread. – Pratik Sharma Dec 28 '12 at 8:52