2

I want to change the language of the title as highlighted in the image below enter image description here

How can I achieve this?

Wai Ha Lee
  • 8,598
  • 83
  • 57
  • 92
Killua
  • 23
  • 3
  • you have tried something??? – Emil Aug 12 '15 at 07:31
  • @Boss I just implement PlacePicker.IntentBuilder builder = new PlacePicker.IntentBuilder(); and startActivityForResult(builder.build(getActivity().getApplicationContext()), PLACE_PICKER_REQUEST); And then, its call defaut activity , i dont know how to change title of this – Killua Aug 12 '15 at 07:34
  • I don't think you can do that.. but you can use this https://github.com/googlesamples/android-play-places/tree/master/PlacePicker – Emil Aug 12 '15 at 07:39
  • thanks for your suggestion. – Killua Aug 12 '15 at 07:45

1 Answers1

2

Just like many other Google's apps, these strings are automaticaly translated to the user language. I'm currently developing an App with PlacePicker, as you can see on the printscreen below (just took it) it's translated to my language. So i tried to change my phone's language to English and it was translated, which means you don't have to worry about the language.

enter image description here

George
  • 6,886
  • 3
  • 44
  • 56
  • 1
    very helpful for me. Thanks a lot @GeorgeR – Killua Aug 12 '15 at 14:08
  • If you have bilingual application, you can't change phones language just because of your app. I tried changing Applications language but its not working for place picker, other stuffs are localized but not place picker. – Afzal Ali Oct 15 '17 at 08:17