获取系统上所有可用活动的列表
由于系统应该知道可用的活动,因为它们是在安装过程中评估的相应 AndroidManifest.xml
文件中声明的:
有没有办法查询这些活动?
Since the system should know about the available Activities as they are declared in the appropriate AndroidManifest.xml
files which are evaluated during installation:
Is there a way to query these Activities?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
当然,看看
PackageManager.getInstalledPackages
方法。以下是打印注册活动名称的示例:Sure, have a look at
PackageManager.getInstalledPackages
method. Here is the example of printing registered activities names:注意:将此权限添加到清单文件中:
将其添加到上面的代码中:
Note: Add this permission to the manifest file:
Add this to above code: