Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我们需要为“检测设备中的语言变化”编写代码的地方
我的意思是Locale.getDefault().getDisplayLanguage();“部分更好写onCretae();还是onResume()?
Locale.getDefault().getDisplayLanguage();
onCretae();
onResume()
你可以把它放在 onCreate(); 它不会改变。
如果您想在每次应用程序进入前台时检查语言,请将其放在 onResume() 中。
编写onCreate()方法本身比编写 onResume()更好
最好写在onResume () 方法本身而不是onCreate ()