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 中所有 java 类包的列表。我尝试过使用Package.getPackages()方法,但它正在返回null。
Package.getPackages()
null
Package[] packages = Package.getPackages() // 'Packages' is null
我假设你想要一个所有已安装应用程序包的列表,或者类似的东西,在这种情况下,我会访问这个链接他做得很好,一步一步地回答你需要做什么实现这一目标。