How can I change the language for phone from an android app? Can you give me some example?
Thanks in advance.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Phone-level language control is typically done using restricted interfaces: as far as I am aware there is no direct control from an app as part of the public Android interface.
Your best bet would be to use an Intent to open up the language picker. The Intent filter is:
So something like this should work:
And then the user can pick their language from there.