Android 重用技巧
Android 资源及其自动生成的引用极大地简化了一个应用程序的开发。但它们也使多个项目中以及任何使用资源的组件中 Android 活动的重用变得复杂。
库项目是一种有限的替代方案。一个项目可以依赖于许多库项目,但一个库项目不能依赖于另一个项目,并且添加额外的 JAR 依赖项并不简单。
如何重用 Android 组件(而不是普通的旧 Java 代码)?有什么技巧和窍门吗?
Android resources and their automatically generated references simplify the development of one app a great deal. But they also complicate the reuse of Android activities in multiple projects, and in general of any component that uses resources.
Library projects are a limited alternative. A project can depend on many library projects, but a library project can't depend on another, and adding additional JAR dependencies is not straightforward.
How do you reuse Android components (not plain old Java code)? Any tips and tricks?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Android Parcel 项目 中包含了一些提示、技巧和工具。
I have some tips, tricks, and tools wrapped up in the Android Parcel Project.