mirror of
https://github.com/nextcloud/android.git
synced 2024-11-27 17:46:37 +03:00
test if any email app is available
Signed-off-by: tobiasKaminsky <tobias@kaminsky.me>
This commit is contained in:
parent
24aa17e648
commit
64d1d22f35
2 changed files with 7 additions and 1 deletions
|
@ -384,7 +384,12 @@ public class Preferences extends PreferenceActivity
|
|||
|
||||
intent.setData(Uri.parse(feedbackMail));
|
||||
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
|
||||
startActivity(intent);
|
||||
|
||||
if (intent.resolveActivity(getPackageManager()) != null) {
|
||||
startActivity(intent);
|
||||
} else {
|
||||
DisplayUtils.showSnackMessage(Preferences.this, R.string.feedback_no_mail_app);
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
|
|
@ -806,4 +806,5 @@
|
|||
<string name="file_version_restored_error">Error restoring file version!</string>
|
||||
<string name="outdated_server">The server has reached end of life, please upgrade!</string>
|
||||
<string name="dismiss">Dismiss</string>
|
||||
<string name="feedback_no_mail_app">No app available to send mails!</string>
|
||||
</resources>
|
||||
|
|
Loading…
Reference in a new issue