public void OnUpdateMessages(bool success)
        {
            // Stop the progress spinner and display the list
            inbox.SetListShownNoAnimation(true);

            // If the message update failed
            if (!success)
            {
                // Show an error dialog
                DialogFragment fragment = new InboxRefreshFailedDialog();
                fragment.Show(SupportFragmentManager, "dialog");
            }
        }
		public void OnUpdateMessages (bool success)
		{
			// Stop the progress spinner and display the list
			inbox.SetListShownNoAnimation (true);

			// If the message update failed
			if (!success) {
				// Show an error dialog
				DialogFragment fragment = new InboxRefreshFailedDialog ();
				fragment.Show (SupportFragmentManager, "dialog");
			}
		}