Addition to previous commit
This commit is contained in:
parent
0f53d75a80
commit
8351b066ac
@ -82,7 +82,7 @@ android {
|
|||||||
defaultConfig {
|
defaultConfig {
|
||||||
minSdkVersion 8
|
minSdkVersion 8
|
||||||
targetSdkVersion 19
|
targetSdkVersion 19
|
||||||
versionCode 209
|
versionCode 211
|
||||||
versionName "1.4.8"
|
versionName "1.4.8"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -147,7 +147,7 @@ public class LocaleController {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public void applyLanguage(LocaleInfo localeInfo, boolean override) {
|
public void applyLanguage(LocaleInfo localeInfo, boolean override) {
|
||||||
if (localeInfo == null || localeInfo == currentLocaleInfo) {
|
if (localeInfo == null) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
try {
|
try {
|
||||||
|
@ -120,7 +120,11 @@ public class ApplicationLoader extends Application {
|
|||||||
lastPauseTime = System.currentTimeMillis();
|
lastPauseTime = System.currentTimeMillis();
|
||||||
applicationContext = getApplicationContext();
|
applicationContext = getApplicationContext();
|
||||||
NativeLoader.initNativeLibs(this);
|
NativeLoader.initNativeLibs(this);
|
||||||
LocaleController.getInstance();
|
try {
|
||||||
|
LocaleController.getInstance();
|
||||||
|
} catch (Exception e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
|
|
||||||
applicationHandler = new Handler(applicationContext.getMainLooper());
|
applicationHandler = new Handler(applicationContext.getMainLooper());
|
||||||
|
|
||||||
@ -142,8 +146,12 @@ public class ApplicationLoader extends Application {
|
|||||||
@Override
|
@Override
|
||||||
public void onConfigurationChanged(Configuration newConfig) {
|
public void onConfigurationChanged(Configuration newConfig) {
|
||||||
super.onConfigurationChanged(newConfig);
|
super.onConfigurationChanged(newConfig);
|
||||||
LocaleController.getInstance().onDeviceConfigurationChange(newConfig);
|
try {
|
||||||
Utilities.checkDisplaySize();
|
LocaleController.getInstance().onDeviceConfigurationChange(newConfig);
|
||||||
|
Utilities.checkDisplaySize();
|
||||||
|
} catch (Exception e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void resetLastPauseTime() {
|
public static void resetLastPauseTime() {
|
||||||
|
Loading…
Reference in New Issue
Block a user