我知道设置语言方法:   IActivityManager am = ActivityManagerNative.getDefault();
     try {
Configuration config = am.getConfiguration();
Log.d(TAG, "mcc="+config.mcc) ;
           if(config.mcc==310||config.mnc==01){
             Log.d(TAG, "set china language....................................................") ;
             Locale mLocale = null ;
             config.locale = mLocale.CHINA;
             // indicate this isn't some passing default - the user wants this remembered
             config.userSetLocale = true;
             am.updateConfiguration(config);
             // Trigger the dirty bit for the Settings Provider.
             BackupManager.dataChanged("com.android.providers.settings");
           }
} catch (RemoteException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
如果没有怎么获得设置当前语言的Locale 
关键就是为了拿到config.locale = mLocale.CHINA; 
 mLocale.getdefault 只有一个设置为默认语言的方法
怎么获得当前语言Locale ....请高手解答