当前位置:网站首页>Detect current system language

Detect current system language

2022-06-12 20:18:00 xiyangyang8110

Is it in Chinese

getResources().getConfiguration().locale.getCountry().equals("CN")
   if (getResources().getConfiguration().locale.getCountry().equals("CN")) {
    
            zwCb.setChecked(true);
            enCb.setChecked(false);
        } else {
    
            enCb.setChecked(true);
            zwCb.setChecked(false);
        }
原网站

版权声明
本文为[xiyangyang8110]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/163/202206122012348460.html