Searched defs:postalAddress (Results 1 - 1 of 1) sorted by relevance

/packages/apps/Contacts/src/com/android/contacts/util/
H A DStructuredPostalUtils.java26 public static Intent getViewPostalAddressIntent(String postalAddress) { argument
27 return new Intent(Intent.ACTION_VIEW, getPostalAddressUri(postalAddress));
30 public static Uri getPostalAddressUri(String postalAddress) { argument
31 return Uri.parse("geo:0,0?q=" + Uri.encode(postalAddress));
34 public static Intent getViewPostalAddressDirectionsIntent(String postalAddress) { argument
35 return new Intent(Intent.ACTION_VIEW, getPostalAddressDirectionsUri(postalAddress));
38 public static Uri getPostalAddressDirectionsUri(String postalAddress) { argument
39 return Uri.parse("https://maps.google.com/maps?daddr=" + Uri.encode(postalAddress));

Completed in 482 milliseconds