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.
我正在开发一个 Android 应用程序。我的代码有问题,还是我的源文件真的丢失了?
您正在尝试查看已编译的文件。这些文件中只有字节码,即设备“理解”的语言。
如果您想查看 android java 文件的源代码,您必须确保通过 eclipse 中的 sdk 管理器下载源代码。然后,您可以在 eclipse 中附加该源,以便您看到它而不是您现在看到的,即字节码。要附加您的源,只需单击附加源按钮并导航到您的 sdk 文件夹,就会有一个 souces 文件夹。从那里您可以选择要附加的版本 sdk。祝你好运!