前言
Android换肤插件开发时,需要依赖LayoutInflater.Factory类,在Android P和 之前版本都测试ok,但放在Android Q(10)上测试就失效了。
本文记录一下失效的原因和解决的方法。
正文
在Android Q之前版本,通过如下代码可以设置的
try {
LayoutInflater layoutInflater = LayoutInflater.from(context);
Field mFactorySet = LayoutInflater.class.getDeclaredField("mFactorySet");
mFactorySet.setAccessible(true);
mFactorySet.set(layoutInflater, false);
LayoutInflaterCompat.setFactory2(layoutInflater, SkinInflaterFactory.getInstance());
} catch (Exception e) {
e.printStackTrace();
}
但是,Android Q版本或者之后的版本,使用上面代码就提示错误:
java.lang.NoSuchFieldException: No field mFactorySet in class Landroid/view/LayoutInflater; (declaration of 'android.view.LayoutInflater' appears in /system/framework/framework.jar!classes3.dex)
原因是LayoutInflater中的mFactorySet变量做了版本限制,如下,也就是最大支持Android P,之后的版本就无法使用了。
/**
* If any developer has desire to change this value, they should instead use
* {@link #cloneInContext(Context)} and set the new factory in thew newly-created
* LayoutInflater.
*/
@UnsupportedAppUsage(maxTargetSdk = Build.VERSION_CODES.P)
private boolean mFactorySet;
网上其他大佬也遇到过,根据大佬说的方向,我这边也整理了一下,测试ok。
参考文章
© 版权声明