如何在 android studio 中创建没有主要 activity 的应用程序?

How do I create an application without a main activity in android studio?

我正在 android 工作室制作动态壁纸。除了墙纸,我不想要任何 UI,所以我的应用程序不包含任何活动。

但是,当我尝试部署到设备时,出现以下错误并且我的壁纸无法加载。

Could not identify launch activity: Default Activity not found
Error while Launching activity

如何创建一个没有主 activity 的应用程序?

在您的应用程序中没有任何活动是完全可以的。构建成功,Android Studio 仅在尝试 运行 时失败,因为它不知道该做什么。

您需要修改 运行 配置。转到 "Run > Edit configurations" 并在 "Launch options" 下将 "Default Activity" 更改为 "Nothing":