How to change Language on Android google map V2 api

I tried many ways to change language in google maps on android. It's not working.I tried to Change the locale of device with programming,also Force changed the locale of device. What should i do

Im using com.google.android.gms:play-services:7.3.0

thank you

Upvotes: 1

Views: 3098

Answers (1)

bjiang
bjiang

Reputation: 6078

As we discuss in the comment: You can change Locale.setDefault.

Sample code:

Locale.setDefault(new Locale("ja"));

For more details, Please refer to here and here.

Upvotes: 2

Related Questions