在启用 KVM 的 Linux 机器上的谷歌电视模拟器上没有谷歌 Chrome 浏览器是否正常?从我的应用程序启动一个Intent
访问网页时,我收到错误消息"No activity found to handle intent {act=android.intent.action.VIEW, dat=http://...}"
,我尝试了几个网址。My Activity 中的代码是这样的,它在其他 android 平台上运行良好:
Intent myIntent= new Intent(Intent.ACTION_VIEW,
Uri.parse( "http://www.test.com");
startActivity(myIntent);
我错过了安装 Google Chrome 浏览器的步骤吗?另一方面,我也找不到 Google Market 应用程序。