系統上安裝了多種瀏覽器,可否指定某瀏覽器訪問指定頁面?請說明起因。

1、 啓動android默認瀏覽器
在Android程序中咱們能夠經過發送隱式Intent來啓動系統默認的瀏覽器。若是手機自己安裝了多個瀏覽器而又沒有設置默認瀏覽器的話,系統將讓用戶選擇使用哪一個瀏覽器來打開鏈接。關於Intent的更多內容請參考《 經常使用Intent
示例1
Intent intent =newIntent();
        intent.setAction("android.intent.action.VIEW");
        Uri content_url =Uri.parse("http://www.163.com");
        intent.setData(content_url);
        startActivity(intent);
這樣子,android就能夠調用起手機默認的瀏覽器訪問。
2、啓動指定瀏覽器
在Android程序中咱們能夠經過發送顯式Intent來啓動指定的瀏覽器。
啓動Android原生瀏覽器
示例2
Intent intent =newIntent();        
         intent.setAction("android.intent.action.VIEW");    
         Uri content_url =Uri.parse("http://www.163.com");   
         intent.setData(content_url);           
         intent.setClassName("com.android.browser","com.android.browser.BrowserActivity");   
         startActivity(intent);
只要修改以intent.setClassName("com.android.browser","com.android.browser.BrowserActivity");
中相應的應用程序packagename 和要啓動的activity便可啓動其餘瀏覽器來
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"
相關文章
相關標籤/搜索