我正在创建一个应用程序,用户可以点击给定的地址(在 TextView
表单)并将用户带到谷歌Map应用程序中的确切位置。我使用此代码来实现这一点:
// Creates button view which is connected to a view in the XML layout, which gets triggered on touching the view.
Button btnLoc = findViewById(R.id.location);
btnLoc.setOnClickListener(new View.OnClickListener()
{
@Override
public void onClick(View v) {
// Creates an Intent that will load the location of Mycoffee cafe in map app.
Uri gmmIntentUri = Uri.parse("geo:00.0000,00.0000");
Intent mapIntent = new Intent(Intent.ACTION_VIEW, gmmIntentUri);
mapIntent.setPackage("com.google.android.apps.maps");
startActivity(mapIntent);
}
});
这里的问题是,如果用户的设备中没有安装googleMap应用程序,那么该应用程序在点击浏览器时就会崩溃 location
查看。因此,在这种情况下,不是应用程序崩溃,我想做的是要么应用程序应该打开任何浏览器并加载那里的位置(在谷歌Map网站),或者它应该显示一个toast消息,要求用户安装谷歌Map应用程序。我怎样才能做到这一点?
如果可能的话,请分享解决方案。
1条答案
按热度按时间mpgws1up1#
你要做的是检查packagemanager是否真的安装了所需的应用程序,如果安装了-用你给它的值升级googleMap应用程序。如果没有,请将用户重定向到play store进行安装。
随信寄去
所以
然后
如果您想在浏览器或任何其他可以处理的应用程序中打开它
注意这里的经纬度也要更换。