1

我有作为库模块的基本模块和作为我的应用程序的功能模块我如何将位于模块功能的某些布局中的 imageView 的 src 设置为我在基本模块中的可绘制文件?

我已经尝试过这段代码,但它给了我在构建时找不到的资源:

 <ImageView
                    android:src="@com.example.app.base:drawable/image"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content" />
4

1 回答 1

1

无法将 base_module 的资源访问到 library_module 中。但其他方式工作正常,即当您将 library_module 依赖项添加到 base_module 中时,您可以将 library_module 的资源访问到 base_module 中。

于 2018-08-21T11:49:22.893 回答