Load url into DroidGap if it was passed in to intent.

This commit is contained in:
Bryce Curtis 2010-11-05 14:50:48 -05:00
parent b66535a17d
commit 0b3e27b3fa

View File

@ -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());
}
}
/**