Android开发人员,
Google Maps Micro(适用于Android Wear的地图)无法像Google地图智能手机那样运行。使用经典意图时应用程序崩溃了:
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse("google.navigation:q=48.649469,-2.02579"));
startActivity(intent);
那么,如何从Android Wear应用程序开始指示?
于连
答案 0 :(得分:1)
只需使用以下意图:
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse("google.navigation:///?q=48.649469,-2.02579&mode=w"));
startActivity(intent);
其他可用模式: