Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 
  • Built in Place Picker in Android.

    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 1.10k
    Comment on it

    Android has now a built in Place picker, where user can pick the places. Developer can only send an intent and get result in OnActivityResult.

    Requirements -Google play service greater than 7.

    1. public void onPickButtonClick(View v) {
    2. // Construct an intent for the place picker
    3. try {
    4. PlacePicker.IntentBuilder intentBuilder =
    5. new PlacePicker.IntentBuilder();
    6. Intent intent = intentBuilder.build(this);
    7. // Start the intent by requesting a result,
    8. // identified by a request code.
    9. startActivityForResult(intent, REQUEST_PLACE_PICKER);
    10.  
    11. } catch (GooglePlayServicesRepairableException e) {
    12. // ...
    13. } catch (GooglePlayServicesNotAvailableException e) {
    14. // ...
    15. }
    16. }
    17.  
    18. @Override
    19. protected void onActivityResult(int requestCode,
    20. int resultCode, Intent data) {
    21.  
    22. if (requestCode == REQUEST_PLACE_PICKER
    23. && resultCode == Activity.RESULT_OK) {
    24.  
    25. // The user has selected a place. Extract the name and address.
    26. final Place place = PlacePicker.getPlace(data, this);
    27.  
    28. final CharSequence name = place.getName();
    29. final CharSequence address = place.getAddress();
    30. String attributions = PlacePicker.getAttributions(data);
    31. if (attributions == null) {
    32. attributions = "";
    33. }
    34.  
    35. mViewName.setText(name);
    36. mViewAddress.setText(address);
    37. mViewAttributions.setText(Html.fromHtml(attributions));
    38.  
    39. } else {
    40. super.onActivityResult(requestCode, resultCode, data);
    41. }
    42. }

    Reference : https://developers.google.com/places/android-api/

 0 Comment(s)

Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Reset Password
Fill out the form below and reset your password: