mirror of
https://github.com/moparisthebest/k-9
synced 2024-12-24 08:38:51 -05:00
Show short message when moving accounts
This commit is contained in:
parent
52a92d93a1
commit
3967654a3e
@ -1117,5 +1117,6 @@ Welcome to K-9 Mail setup. K-9 is an open source mail client for Android origin
|
||||
|
||||
<string name="manage_accounts_move_up_action">Move up</string>
|
||||
<string name="manage_accounts_move_down_action">Move down</string>
|
||||
<string name="manage_accounts_moving_message">Moving account...</string>
|
||||
|
||||
</resources>
|
||||
|
@ -1953,10 +1953,8 @@ public class Accounts extends K9ListActivity implements OnItemClickListener, OnC
|
||||
|
||||
@Override
|
||||
protected void showProgressDialog() {
|
||||
//FIXME
|
||||
String title = "";
|
||||
String message = "";
|
||||
mProgressDialog = ProgressDialog.show(mActivity, title, message, true);
|
||||
String message = mActivity.getString(R.string.manage_accounts_moving_message);
|
||||
mProgressDialog = ProgressDialog.show(mActivity, null, message, true);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
Loading…
Reference in New Issue
Block a user