亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

Android調(diào)用系統(tǒng)默認(rèn)瀏覽器訪問的方法

 更新時間:2016年03月03日 11:06:34   投稿:mrr  
這篇文章主要介紹了Android調(diào)用系統(tǒng)默認(rèn)瀏覽器訪問的方法的相關(guān)資料,需要的朋友可以參考下

一、啟動android默認(rèn)瀏覽器

這樣子,android就可以調(diào)用起手機默認(rèn)的瀏覽器訪問。

二、指定相應(yīng)的瀏覽器訪問

1、指定android自帶的瀏覽器訪問

( “com.android.browser”:packagename ;“com.android.browser.BrowserActivity”:啟動主activity)
Intent intent= new Intent();
intent.setAction("android.intent.action.VIEW");
Uri content_url = Uri.parse("");
intent.setData(content_url);
intent.setClassName("com.android.browser","com.android.browser.BrowserActivity");
startActivity(intent);

2、啟動其他瀏覽器(當(dāng)然該瀏覽器必須安裝在機器上)

只要修改以下相應(yīng)的packagename 和 主啟動activity即可調(diào)用其他瀏覽器

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

uc瀏覽器":"com.uc.browser", "com.uc.browser.ActivityUpdate“

opera :"com.opera.mini.android", "com.opera.mini.android.Browser"

qq瀏覽器:"com.tencent.mtt", "com.tencent.mtt.MainActivity"

三、打開本地html文件

打開本地的html文件的時候,一定要指定某個瀏覽器,而不能采用方式一來瀏覽,具體示例代碼如下

Intent intent= new Intent();
intent.setAction("android.intent.action.VIEW");
Uri content_url = Uri.parse("content://com.android.htmlfileprovider/sdcard/help.html");
intent.setData(content_url);
intent.setClassName("com.android.browser","com.android.browser.BrowserActivity");
startActivity(intent);

關(guān)鍵點是調(diào)用了”content“這個filter。

以前有在win32編程的朋友,可能會覺得用這種形式”file://sccard/help.html“是否可以,可以很肯定的跟你說,默認(rèn)的瀏覽器設(shè)置是沒有對”file“這個進(jìn)行解析的,如果要讓你的默認(rèn)android瀏覽器有這個功能需要自己到android源碼修改manifest.xml文件,然后自己編譯瀏覽器代碼生成相應(yīng)的apk包來重新在機器上安裝。

大體的步驟如下:

1、打開 packages/apps/Browser/AndroidManifest.xml文件把加到相應(yīng)的<intent-filter>后面就可以了

<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="file" />
</intent-filter>

2、重新編譯打包,安裝,這樣子,新的瀏覽器就支持”file“這個形式了

有興趣的可以去試試。

以上內(nèi)容是小編給大家介紹的Android調(diào)用系統(tǒng)默認(rèn)瀏覽器訪問的方法,希望對大家有所幫助!

相關(guān)文章

最新評論