Reputation: 2753
In android there is a progress dialog class??
ProgressDialog dialog = ProgressDialog.show(MyActivity.this, "", "Loading. Please wait...", true);
Upvotes: 1
Views: 1430
Reputation: 26345
Use the ProgressIndicator
<shell:SystemTray.ProgressIndicator>
<shell:ProgressIndicator IsIndeterminate="True" IsVisible="True" Text="Click me..." />
</shell:SystemTray.ProgressIndicator>
Upvotes: 2
Reputation: 8126
There is ProgressBar control comes with SDK, also PerformanceProgressBar in Silverlight Toolkit exists (a little bit better). In WP7.1 you have an access to SystemTray. It has an option to show that some actions happen (indeterminate or in percents) with additional message if you want
Upvotes: 0