Click here to Skip to main content
15,896,111 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi All,
I have creating live wallpaper When i click set wallpaper button it is take a long time to set it.In that time i Want to display a Loading...... message to the user please help me.
Posted

1 solution

You can use ProgressDialog like:
Java
ProgressDialog pd = new ProgressDialog(yourActivity.this);
pd.setMessage("Loading");
pd.show();

Inside your activity where you load your wallpaper.
Want to see how it works? Then see..
Android's indeterminate ProgressDialog tutorial[^]
 
Share this answer
 
v3

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