0
您好我想使用此代碼,開始從服務的Android瀏覽器:不能啓動從服務瀏覽器的Android
protected void showBrowser(){
String url = "http://www.google.com";
Intent i = new Intent(Intent.ACTION_VIEW);
i.setData(Uri.parse(url));
this.startActivity(i);
}
但這似乎並沒有工作!瀏覽器從不啓動,並在調用startActivity時使用日誌執行停止。
感謝您的建議,但這也沒有做到這一點,因爲dhaag23提到它需要額外的意圖falg。 – maxsap 2010-12-06 07:09:00