Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我创建了一个小部件,它是 View 的扩展,可以插入到 xml 中。它不包含任何布局或任何其他类型的外部资源。
它会自动加载其数据并准备在构造函数中显示,然后等待父活动启动 start() 方法开始工作。
如何在没有源代码的情况下将其导出为 jar,以便最终分发它并让其他人使用它而无需修改它?可能吗?
谢谢你。
右键单击您的项目>导出>Java>Jar文件>
并且只选择 src 而不是其他文件夹。给你的 jar 文件名,如小部件。
然后完成。将创建一个名为“widget.jar”的 jar 文件
希望这对您有所帮助。