当我附加源代码时如何修改源android
我想更改WebView控件中的一些功能,有什么方法可以更改sdk的源吗?知道我得到了源代码 android.jar 并将其附加到 eclipse 进行调试,但我无法编辑它。
I want to change some functionality in the WebView control, is there any way to change the source of the sdk. knowing that I got the source code android.jar and I attach it to eclipse for debugging but I can't edit it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
通过继承扩展 WebView 并在子类中实现功能怎么样?编辑 Android 源代码不太可能是最佳实践:)
What about extending WebView via inheretance and implementing functionality in subclass? Editing android sources is unlikely a best practices :)
没有“sdk 来源”。
源代码称为“操作系统”。它作为设备上的固件运行。您可以更改此代码并创建可加载到设备上的替换固件。
There is no "source of the sdk".
The source code is called an "operating system". It runs as firmware on a device. You can change this code and create replacement firmware which you can load on a device.
查看 git-hub Phonegap 源文件 - https://github.com/phonegap/phonegap-android
你可以下载源代码,按照你喜欢的方式编辑它们,然后制作一个 jar 文件。
Take a look at the git-hub phonegap source files - https://github.com/phonegap/phonegap-android
You can download the source, edit them however you like and then make a jar file.