mirror of
https://github.com/apache/cordova-android.git
synced 2026-05-11 00:00:05 +08:00
Load url into DroidGap if it was passed in to intent.
This commit is contained in:
@@ -110,6 +110,14 @@ public class DroidGap extends PhonegapActivity {
|
||||
initWebView();
|
||||
root.addView(this.appView);
|
||||
setContentView(root);
|
||||
|
||||
// If URL was passed in to intent, then load it
|
||||
Uri uri = this.getIntent().getData();
|
||||
if (uri != null) {
|
||||
System.out.println("Loading initial URI="+uri.toString());
|
||||
this.loadUrl(uri.toString());
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user