是否可以将谷歌导航添加到我的安卓应用程序中。我的想法是在应用程序上有一个按钮,单击该按钮时,会打开Google地图,以便用户可以看到他们在哪里以及如何导航到我选择的本地地图上的某些兴趣点。
或者,我可以使用任何开源导航,以及如何将其利用到我的 Android 应用程序中以添加用户导航功能?
Intent intent = new Intent(android.content.Intent.ACTION_VIEW, Uri.parse("http://maps.google.com/maps?daddr=0,0%20(Imaginary%20Place)&dirflg=r"));
if (isAppInstalled("com.google.android.apps.maps")) {
intent.setClassName("com.google.android.apps.maps", "com.google.android.maps.MapsActivity");
}
startActivity(intent);
// helper function to check if Maps is installed
private boolean isAppInstalled(String uri) {
PackageManager pm = getApplicationContext().getPackageManager();
boolean app_installed = false;
try {
pm.getPackageInfo(uri, PackageManager.GET_ACTIVITIES);
app_installed = true;
} catch (PackageManager.NameNotFoundException e) {
app_installed = false;
}
return app_installed;
}
您可以在点击事件中包含代码。