如何从MyApp Android在Web浏览器应用程序中打开URL

时间:2016-03-11 12:31:51

标签: javascript android jsp android-intent

解决

我想在Android平板电脑上的网络浏览器应用中打开特定网址。将从MyApp打开Web浏览器应用程序。 MyApp是webkit Android应用程序,我可以通过服务器站点上的jsp或js文件进行编辑。我没有MyApp的任何来源。 如何从MyApp在Web浏览器中打开URL?

感谢您的理解

[解决]

如何解决这个问题是没办法的。移动设备中的Android应用程序只能通过另一个具有propriet方法和功能的Android应用程序进行控制。 JS或任何其他方式都不能使用Android功能。

我只是不自己解决这个问题,我要求MyApp的开发人员编辑他的应用程序。

2 个答案:

答案 0 :(得分:1)

在布局文件中添加webview。使用以下代码加载网址

WebView web = (WebView) findViewById(R.id.web);
ProgressDialog progressBar = new ProgressDialog(Activity.this);
progressBar.setMessage("Loading");

web.setWebViewClient(new WebViewClient() {
public boolean shouldOverrideUrlLoading(WebView view, String url) {
    view.loadUrl(url);
    return true;
}

public void onPageStarted(WebView view, String url, Bitmap favicon) {
    progressBar.show();
}

public void onPageFinished(WebView view, String url) {
    if (progressBar.isShowing()) {
        progressBar.dismiss();
    }
}

public void onReceivedError(WebView webView, int errorCode,
                            String description, String failingUrl) {

    super.onReceivedError(webView, errorCode, description, failingUrl);
    try {
        webView.stopLoading();
    } catch (Exception e) {//
    }
    if (webView.canGoBack()) {
        webView.goBack();
    }
    AlertDialog alertDialog = new AlertDialog.Builder(Activity.this).create();
    alertDialog.setTitle("Error");
    alertDialog.setMessage("Cannot connect to the Server." +
            " Check your internet connection and try again.");
    alertDialog.setButton(DialogInterface.BUTTON_POSITIVE,
            "Try Again", new DialogInterface.OnClickListener() {
                public void onClick(DialogInterface dialog, int which) {
                    finish();
                    startActivity(getIntent());
                }
            });
    alertDialog.setButton(DialogInterface.BUTTON_NEGATIVE, "Cancel",
            new DialogInterface.OnClickListener() {
                @Override
                public void onClick(DialogInterface dialog, int which) {
                    finish();
                }
            });
    if (progressBar.isShowing()) {
        progressBar.dismiss();
    }
    alertDialog.show();
}
});

web.loadUrl("your_url");

答案 1 :(得分:0)

  

在您的应用中使用此代码..

Intent browserIntent = new 
Intent(Intent.ACTION_VIEW,Uri.parse("http://www.google.com"));
startActivity(browserIntent);

As for the missing "http://" I'd just do something like this: 

if (!url.startsWith("http://") && !url.startsWith("https://"))
url = "http://" + url;