Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android開發 >> 高級開發 >> Android浏覽器如何打開網頁

Android浏覽器如何打開網頁

編輯:高級開發

一、打開鏈接

  Intent it = new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.baidu.com"));

  it.setClassName("com.android.browser", "com.android.browser.BrowserActivity");

  getContext().startActivity(it);

  二、打開本地網頁

  Intent intent=new Intent();

  intent.setAction("android.intent.action.VIEW");

  Uri CONTENT_URI_BROWSERS = Uri.parse("content://com.android.htmlfileprovider/sdcard/123.Html");

  intent.setData(CONTENT_URI_BROWSERS);

  intent.setClassName("com.android.browser", "com.android.browser.BrowserActivity");

  startActivity(intent);

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved