3

如果我运行应用程序,我需要直接打开网页。无需在其中使用单个组件。

4

5 回答 5

4

这是直接打开 google.com 的 Activity 的 onCreate 方法:

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_browser);

    WebView wb = (WebView) findViewById(R.id.webView1);

    wb.loadUrl("http://www.google.com.tr");
}

这是 activity_browser.xml 布局文件:

<WebView xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".BrowserActivity"
    android:id="@+id/webView1" > 
</WebView>

不要忘记在 AndroidManifest.xml 文件中添加互联网权限:

<uses-permission android:name="android.permission.INTERNET" />
于 2012-12-05T15:26:37.533 回答
0

在您的 onCreate 方法中创建并启动意图(当然使用 uri.parse)。

于 2012-12-05T14:51:52.497 回答
0

我不太明白,但我认为这就是你需要的......

在 Android 中打开网页的四种不同方式

于 2012-12-05T14:54:24.293 回答
0

正如 Ercan 所说,这就是它的完成方式:

String url = "http://www.example.com";
Intent i = new Intent(Intent.ACTION_VIEW);
i.setData(Uri.parse(url));
startActivity(i);

在 Activity 的 onCreate 方法上执行此操作。

于 2012-12-05T14:54:38.660 回答
0

在 onCreate() 中添加代码

    webView.setWebViewClient(new WebViewClient());    //the lines of code added
    webView.setWebChromeClient(new WebChromeClient()); //same as above
    webView.getSettings().setJavaScriptEnabled(true);
  webView.canGoBack();

    webView.loadUrl("your url");


    final ProgressDialog progressBar = new ProgressDialog(getActivity());
    progressBar.setMessage("Please wait...");


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

        @Override
        public void onPageStarted(WebView view, String url, Bitmap favicon) {
            super.onPageStarted(view, url, favicon);
            if (!progressBar.isShowing()) {
                progressBar.show();
            }
        }

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

        public void onReceivedError(WebView view, int errorCode, String description, String failingUrl) {
            if (progressBar.isShowing()) {
                progressBar.dismiss();
            }
        }
    });


    //To handle Webpage back in fragment
    webView.setOnKeyListener(new View.OnKeyListener() {

        public boolean onKey(View v, int keyCode, KeyEvent event) {
            if (keyCode == KeyEvent.KEYCODE_BACK
                    && event.getAction() == MotionEvent.ACTION_UP
                    && webView.canGoBack()) {
                webView.goBack();
                return true;
            }
            return false;
        }
    });

在xml中添加webview:

<WebView
    android:id="@+id/webView"
    android:layout_width="match_parent"
    android:layout_height="wrap_content" />
于 2018-07-24T06:32:47.597 回答