gpt4 book ai didi

android - 如何从另一个 Android 应用程序启动 android 服务

转载 作者:IT老高 更新时间:2023-10-28 23:18:28 26 4
gpt4 key购买 nike

我在从另一个 Android 应用 (API 17) 启动服务时遇到问题。但是,如果我确实从 shell 运行 'am',则服务可以正常启动。

# am startservice com.xxx.yyy/.SyncService
Starting service: Intent { act=android.intent.action.MAIN cat=
[android.intent.category.LAUNCHER] cmp=com.xxx.yyy/.SyncService }
(service starts fine at this point)
# am to-intent-uri com.xxx.yyy/.SyncService
intent:#Intent;action=android.intent.action.MAIN;
category=android.intent.category.LAUNCHER;
component=com.xxx.yyy/.SyncService;end

所以,当我在代码中执行相同操作时,看起来我没有遗漏任何 Intent :

Intent i = new Intent();
i.setAction(Intent.ACTION_MAIN);
i.addCategory(Intent.CATEGORY_LAUNCHER);
i.setComponent(new ComponentName("com.xxx.yyy", ".SyncService"));
ComponentName c = ctx.startService(i);
if (c == null) { Log.e(TAG, "failed to start with "+i); }

我得到的是(当时服务没有运行):

E/tag( 4026): failed to start with Intent { 
act=android.intent.action.MAIN
cat=[android.intent.category.LAUNCHER]
cmp=com.xxx.yyy/.SyncService }

我在服务上没有 Intent 过滤器,我不想设置一个,我真的想了解我做错了什么,通过它的组件名称启动它,或者可能是什么这是不可能的。

最佳答案

您应该能够像这样启动您的服务:

Intent i = new Intent();
i.setComponent(new ComponentName("com.xxx.yyy", "com.xxx.yyy.SyncService"));
ComponentName c = ctx.startService(i);

如果您指定特定组件,则无需设置 ACTION 或 CATEGORY。确保您的服务在 list 中正确定义。

关于android - 如何从另一个 Android 应用程序启动 android 服务,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17316232/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com