实现自定义 Android View 库组件。绘图应该放在哪里?
我正在开发一个自定义 Android 视图,我想重复使用它。我想将它实现为共享 jar 库。
我的视图需要一些可绘制资源,我想知道存储它们的正确位置在哪里,因为公共 /res/drawable-* 项目文件夹不合适,因为它是一个单独的库。
I'm developing a custom Android view which i want to be reused. I want to implement it as a shared jar library.
My view needs some drawable resources and i'm wondering where is the proper place to store them, as the common /res/drawable-* project folder is not suitable, as it is a seperate library.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须创建一个 Android 库项目,而不是如果您想包含应用程序资源,则直接使用 Jar。
You have to make an Android Library Project, rather than a straight Jar if you want to include application resources.