In my application : I have Find Home Tab.. On clicking it and after passing the co-ordinates from emulator control it should show the map...
If I use intent
Uri uri = Uri.parse("http://maps.google.com/maps?saddr=42.35892,-71.05781&daddr=40.756054,-73.986951");
Intent intent = new Intent(android.content.Intent.ACTION_VIEW, uri);
startActivity(intent);
Its not showing the tabs of my application...
How do I associate intent with my application and make it show the map in my application..
Also is it possible to show textbox below the map displayed by this intent??
Please help..
Thanks.