Android:按一下后退按钮,从Google导航栏返回自己的应用

时间:2015-04-16 12:47:31

标签: android google-maps back-button

我是android的初学者。非常感谢您的帮助。
以下代码说明:用户点击标记后,将重定向到谷歌导航。所以,当我在谷歌导航页面时,有没有办法按下后退按钮一次才能回到我的应用程序?现在我需要按几下按钮(谷歌导航 - >谷歌地图 - > myapp)。

               @Override
                public boolean onMarkerClick(Marker arg0) {

                    String url="google.navigation:q="+Latitude+","+Longitude;
                    Intent intent2 = new Intent(android.content.Intent.ACTION_VIEW,Uri.parse(url));

                    Intent intent3 =Intent.createChooser(intent2, "Testing");

                    startActivity(intent2);

                    return false;
                }

            };

            map.setOnMarkerClickListener(markerclick);

1 个答案:

答案 0 :(得分:0)

也许我错了,但我认为你无法控制它。你不再在你的应用程序中,你不知道其他应用程序(在这种情况下,googlemaps,从我理解的)将如何组织其活动和片段来处理导航。 :/