当我使用
时,我的应用程序有多个活动和服务以及一个意向服务dumpsys activity | grep My.App.Name
我可以在终端中看到我的其他服务和活动,但即使它已经在我的应用程序中运行,我也看不到我的IntentService。
public class MyIntentService extends IntentService
{
public MyIntentService()
{
super("MyIntentService");
}
@Override
protected void onHandleIntent(Intent intent)
{
t1.start();
}
Thread t1 = new Thread()
{
public void run()
{
......................
}
}
}
在我的清单文件中,它被定义为:
<service
android:name=".MyIntentService"
android:enabled="true"
android:launchMode="singleTask">
<intent-filter>
<action android:name="android.intent.action.RUN" />
<action android:name="android.intent.action.MAIN" />
</intent-filter>
</service>
我想从命令检查这个IntentService是否正在运行,请帮忙吗?