解决了(底部的解决方案)
在我的活动中,我需要阅读首选项,然后覆盖配置。在构造函数中,Context还没有准备好:
尝试在空对象引用上调用虚方法'java.lang.String android.content.Context.getPackageName()'
在onCreate
中为时已晚:
java.lang.IllegalStateException:已经调用了getResources()
引自 ContextThemeWrapper documentation:
此[ applyOverrideConfiguration ]方法只能调用一次,并且必须在调用getResources()或getAssets()之前调用。
覆盖配置的正确时间和地点是什么?
摘自我当前工作解决方案。
class OverrideActivity extends AppCompatActivity {
// ...
private boolean __overrideConf = false;
@Override
public Resources getResources() {
if (!__overrideConf) {
// ...
// read shared preferences needs context
// ...
applyOverrideConfiguration(configuration);
__overrideConf = true;
}
return super.getResources();
}
}
解决方案(覆盖受保护的方法attachBaseContext)
@Override
protected void attachBaseContext(Context newBase) {
super.attachBaseContext(newBase);
applyOverrideConfiguration(new Configuration());
}
答案 0 :(得分:1)
解决方案(覆盖受保护的方法attachBaseContext)
@Override
protected void attachBaseContext(Context newBase) {
super.attachBaseContext(newBase);
// copypaste safe code
applyOverrideConfiguration(new Configuration());
}
答案 1 :(得分:0)
升级到appcompat 1.2.0可以解决java.lang.IllegalStateException的问题:已经调用getResources()。 以此替换appcompat依赖项应用程序级别build.gradle
dependencies {
implementation 'androidx.appcompat:appcompat:1.2.0'
}