sel*_*chi 8 android google-maps dictionary google-maps-api-3
我正在开发从当前位置到目的地的转弯导航.我是通过使用下面的代码完成的
Uri gmmIntentUri = Uri.parse("google.navigation:q="+address);
Intent mapIntent = new Intent(Intent.ACTION_VIEW, gmmIntentUri);
mapIntent.setPackage("com.google.android.apps.maps");
startActivity(mapIntent);
Run Code Online (Sandbox Code Playgroud)
问题是如果在屏幕1中点击它需要屏幕2.然后如果我在屏幕2中单击它,它将进入屏幕3,然后是屏幕4,然后是我的活动.
我想要的是如果点击屏幕1,我怎么能参加我的活动?如何通过点击屏幕1中的后面来完成screen2,screen3,screen4?
屏幕1:
屏幕2:
屏幕3:
屏幕4: