mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
closes https://github.com/NativeScript/NativeScript/issues/10147
This commit is contained in:
@@ -29,8 +29,7 @@ function initializeWebViewClient(): void {
|
||||
|
||||
// Handle schemes like mailto, tel, etc
|
||||
if (!android.webkit.URLUtil.isNetworkUrl(url)) {
|
||||
openUrl(url);
|
||||
return true;
|
||||
return openUrl(url);
|
||||
}
|
||||
|
||||
return false;
|
||||
|
||||
@@ -22,8 +22,16 @@ export function openUrl(location: string): boolean {
|
||||
const context = ad.getApplicationContext();
|
||||
try {
|
||||
const intent = new android.content.Intent(android.content.Intent.ACTION_VIEW, android.net.Uri.parse(location.trim()));
|
||||
const packageManager = context.getPackageManager();
|
||||
|
||||
intent.addFlags(android.content.Intent.FLAG_ACTIVITY_NEW_TASK);
|
||||
|
||||
// Handle schemes like mailto, tel, etc
|
||||
if (intent.resolveActivity(packageManager) == null) {
|
||||
Trace.write('Unable to open ' + location + '. Make sure to add queries element(https://developer.android.com/guide/topics/manifest/queries-element) matching the scheme to the AndroidManifest.xml file.', Trace.categories.Error, Trace.messageType.error);
|
||||
return false;
|
||||
}
|
||||
|
||||
context.startActivity(intent);
|
||||
} catch (e) {
|
||||
// We Don't do anything with an error. We just output it
|
||||
|
||||
Reference in New Issue
Block a user