我想在Gear VR
应用程序中启动一个活动
我是否使用意图URI
?例如,如果我想用 lat long 打开一张地图,我会写一些类似的东西
String uri = String.format(Locale.ENGLISH, "geo:%f,%f", latitude, longitude);
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(uri));
context.startActivity(intent);
如何Samsung Gear VR / Oculus
通过我的 android 应用程序的意图打开应用程序?