Is it possible to launch Androids Map App when the user double clicks on an address in a text view of another application?
Similar to when you click on a group of numbers Android will open the phone dialer with the number in the phone number text box.
Is it possible this functionality depends on the version of Android?
Uri geoUri = Uri.parse(“address here”);
Intent mapCall = new Intent(Intent.ACTION_VIEW, geoUri);
startActivity(mapCall);