我想从我的Android应用中使用Google Chrome打开任何网址。如果可能的话,还想知道如何设置全屏模式。 我知道如何使用默认的android浏览器,从以下讨论:
How can I open a URL in Android's web browser from my application?
代码:
Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.google.com"));
startActivity(browserIntent);