Click here to Skip to main content
15,919,613 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi Guys
i want to show a please wait menu between my activities while my app. is downloading some data from web service,can any one tell me how can i do this?
Posted

You can simply use a Toast Notification.
http://developer.android.com/guide/topics/ui/notifiers/toasts.html[^]

Good luck!
 
Share this answer
 
You can call the process dialog

ProgressDialog dialog = ProgressDialog.show(this, "Down Loading", "Please wait ...", true);


then perform your task and when done call

Java
dialog.dismiss();


/Darren
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900