I have 2 tabs in my application and one of that is for location Map. So i have set that tab to start an activity to show the map.
法典:
Intent intent = new Intent(android.content.Intent.ACTION_VIEW,
Uri.parse("http://maps.google.com/maps?saddr=20.344,34.34&daddr=20.5666,45.345"));
startActivity(intent);
I dont want to use googleAPi key and get the map, and i want to do it by intent. But the problem here is, the map will be displayed over the complete screen and the tabs are not visible.
如果地图是用图显示的(而不是地图和设计APICM)。