Merge pull request #1703 from k9mail/compose-fix-indeterminate
compose: hide indeterminate progress bar after onCreate (fix for api level 15)
This commit is contained in:
commit
4eb7c41f61
1 changed files with 3 additions and 0 deletions
|
@ -326,6 +326,9 @@ public class MessageCompose extends K9Activity implements OnClickListener,
|
|||
setContentView(R.layout.message_compose);
|
||||
}
|
||||
|
||||
// on api level 15, setContentView() shows the progress bar for some reason...
|
||||
setProgressBarIndeterminateVisibility(false);
|
||||
|
||||
final Intent intent = getIntent();
|
||||
|
||||
mMessageReference = intent.getParcelableExtra(EXTRA_MESSAGE_REFERENCE);
|
||||
|
|
Loading…
Reference in a new issue