android – 引用模块中的资源

前端之家收集整理的这篇文章主要介绍了android – 引用模块中的资源前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在 Android Studio上创建了一个模块.在模块代码中,我想显示一个使用模块中定义的布局的对话框.当我引用像net.gwtr.module.R.layout.my_dialog_layout这样的布局时,我得到了这个异常;
java.lang.ClassNotFoundException: Didn't find class "net.gwtr.module.R$layout" on path: DexPathList[[zip file "/data/app/net.gwtr.moduletest-1.apk"],nativeLibraryDirectories=[/data/app-lib/net.gwtr.moduletest-1,/vendor/lib,/system/lib]]

我认为原因是当您向项目添加模块时合并资源.它没有为模块包名称创建不同的资源ID.所以我无法从模块包中获得资源.

如何在模块代码中引用模块的资源?

EDIT1:
我像这样引用资源;

Dialog dialog = new Dialog(context);
dialog.setContentView(R.layout.my_dialog_layout);
dialog.show();

EDIT2:
我找到了一种方法,但每次参考资源时我都不想使用它.

当我获得资源ID时,我可以访问资源;

context.getResources().getIdentifier("my_dialog_layout","layout",context.getPackageName())

解决方法

在您的模块的gradle文件中.

你把编译你的其他模块?

compile project(':othermodule')
原文链接:https://www.f2er.com/android/308666.html

猜你在找的Android相关文章