mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-25 11:05:25 +00:00
a7aa980e58
- Fixes #7619
56 lines
1.6 KiB
Java
56 lines
1.6 KiB
Java
package org.thoughtcrime.securesms.util;
|
|
|
|
import android.app.Activity;
|
|
import android.app.Service;
|
|
import android.content.Context;
|
|
import android.content.res.Configuration;
|
|
|
|
import org.thoughtcrime.securesms.util.dynamiclanguage.LanguageString;
|
|
|
|
import java.util.Locale;
|
|
|
|
/**
|
|
* @deprecated Use a base activity that uses the {@link org.thoughtcrime.securesms.util.dynamiclanguage.DynamicLanguageContextWrapper}
|
|
*/
|
|
@Deprecated
|
|
public class DynamicLanguage {
|
|
|
|
public void onCreate(Activity activity) {
|
|
}
|
|
|
|
public void onResume(Activity activity) {
|
|
}
|
|
|
|
public void updateServiceLocale(Service service) {
|
|
setContextLocale(service, getSelectedLocale(service));
|
|
}
|
|
|
|
public Locale getCurrentLocale() {
|
|
return Locale.getDefault();
|
|
}
|
|
|
|
static int getLayoutDirection(Context context) {
|
|
Configuration configuration = context.getResources().getConfiguration();
|
|
return configuration.getLayoutDirection();
|
|
}
|
|
|
|
private static void setContextLocale(Context context, Locale selectedLocale) {
|
|
Configuration configuration = context.getResources().getConfiguration();
|
|
|
|
if (!configuration.locale.equals(selectedLocale)) {
|
|
configuration.setLocale(selectedLocale);
|
|
context.getResources().updateConfiguration(configuration,
|
|
context.getResources().getDisplayMetrics());
|
|
}
|
|
}
|
|
|
|
private static Locale getSelectedLocale(Context context) {
|
|
Locale locale = LanguageString.parseLocale(TextSecurePreferences.getLanguage(context));
|
|
if (locale == null) {
|
|
return Locale.getDefault();
|
|
} else {
|
|
return locale;
|
|
}
|
|
}
|
|
}
|