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.
我有一个问题,是否可以在用户在他们的设备上安装我的 .apk 后向他们显示 MainActivity?因为我已经读到我们无法在安装后自动启动我们的 apk,但我只需要显示我的 Activity,这可能吗?
您无法在安装后立即自动运行您的 Android 应用程序。
您可以做的最大的事情就是倾听android.intent.action.BOOT_COMPLETED意图,并且只有在用户手动启动您的应用程序至少一次时它才会起作用。
android.intent.action.BOOT_COMPLETED
没有办法,你可以在安装后启动服务但不能启动应用程序。查看此答案以了解有关该问题的更多信息:
安装后自动启动android应用程序 和此 启动服务