編輯:關於Android編程
本文實例講述了Android開發之浏覽器用法。分享給大家供大家參考,具體如下:
一、啟動android默認浏覽器
Intent intent = new Intent(); intent.setAction("android.intent.action.VIEW"); Uri content_url = Uri.parse("http://www.jb51.net"); intent.setData(content_url); startActivity(intent);
這樣子,android就可以調用起手機默認的浏覽器訪問。
二、指定相應的浏覽器訪問
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("http://www.jb51.net"); intent.setData(content_url); intent.setClassName("com.android.browser","com.android.browser.BrowserActivity"); startActivity(intent);
2、啟動其他浏覽器(當然該浏覽器必須安裝在機器上)
只要修改以下相應的packagename 和 主啟動activity即可調用其他浏覽器
復制代碼 代碼如下: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);
關鍵點是調用了"content"這個filter。
以前有在win32編程的朋友,可能會覺得用這種形式"file://sccard/help.html"是否可以,可以很肯定的跟你說,默認的浏覽器設置是沒有對"file"這個進行解析的,如果要讓你的默認android浏覽器有這個功能需要自己到android源碼修改manifest.xml文件,然後自己編譯浏覽器代碼生成相應的apk包來重新在機器上安裝。
大體的步驟如下:
1、打開 packages/apps/Browser/AndroidManifest.xml文件把加到相應的<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"這個形式了。
希望本文所述對大家Android程序設計有所幫助。
做Android應用中,最缺少不了的就是自定義Dialog,對於系統默認提供的Dialog樣式,一般都不復合我們應用的樣式。自定義Dialog需要3步驟即可:1、主要的重
前言在我們開始之前,希望您能最好已經滿足以下條件: 1、有一份編譯後的Android源碼(親自動手實踐才會有更深入的理解)
有個愛折騰的美工是個什麼體驗。。。那就是效果,也是,android也就是個UI,UI注重的是用戶體驗,良好的用戶體驗跟舒適的UI效果是分不開的。這次要做的效果就是,做完測
學會了Paint,Canvas的基本用法之後,我們就可以動手開始實踐了,先寫個簡單的圖片加載進度條看看。 按照慣例,先看效果圖,再決定要不要往下看:既然看到這裡了,應該是