I have one screen in app which shows address. Now I want to open google when while click on that address. And it have to show directions from current location to that address.
//code in app
Intent intent = new Intent(android.content.Intent.ACTION_VIEW,
Uri.parse("http://maps.google.com/maps?daddr=28.5600697,77.2695753"));
startActivity(intent);
but it is not opening location only processing.