how to set application locale?
i have an android application in which i need to set the whole appl开发者_开发技巧ication locale to german. i don't want to go into each and every acitivity....when the splashactivity/ welcome screen comes, i want the locale to be set for all the activities in my application. how do i go about this?
to summarize my question: how to set the locale of the android application(not an activity). thank you in advance.
well you have to extends Application class and create a subclass from that
public class MyApp extends Application{
onCreate(){
//set you locale
}
and you can mention it in your menifest file like
<application name="MyApp">
.....
</application>
精彩评论