我有以下代码:
Intent serviceIntent = new Intent(this, ServiceClass.class);
startService(serviceIntent);
我有两节课:
- 开始活动.class
- 服务类.class
我从 StartActivity 类启动服务,但是当我使用“startService()”方法启动服务时,屏幕会发生变化,当服务在“onCreate()”方法中处理其内容时,我无法执行任何操作.
与“活动”方式相比,“服务”方式不应该在没有 UI 干扰的情况下使用吗?