我是Android开发的新手,我正在尝试创建一个简单的“概念验证应用程序”,它将作为后台服务运行。我正在尝试将IntentService与BroadcastReceiver一起使用来启动该过程(在启动时间暂时,在某些时候我可能会将其切换到Screen on / user present)。
我在Android Studio中创建了一个没有活动的新项目。然后我添加了以下Java文件,并对AndroidManifest.xml进行了以下更改。
的AndroidManifest.xml
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.circlesquires.netcountable.netcountable">
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED">
</uses-permission>
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<service android:name=".SnapshotService" android:exported="true">
</service>
<receiver android:name=".ServiceStarter" >
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
</intent-filter>
</receiver>
</application>
</manifest>
ServiceStarter.java
package com.circlesquires.netcountable.netcountable;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.util.Log;
/**
* Created by camha on 6/18/2016.
*/
public class ServiceStarter extends BroadcastReceiver{
static final String ACTION = "android.intent.action.BOOT_COMPLETED";
@Override
public void onReceive(Context context, Intent intent) {
Log.i("output", "onReceive occured!");
if(intent.getAction().equals(ACTION)) {
Intent serviceIntent = new Intent(context, SnapshotService.class);
context.startService(serviceIntent);
}
}
}
SnapshotService.java
package com.circlesquires.netcountable.netcountable;
import android.app.IntentService;
import android.content.Intent;
import android.util.Log;
/**
* Created by camha on 6/18/2016.
*/
public class SnapshotService extends IntentService {
public SnapshotService() {
super("SnapshotService");
}
@Override
protected void onHandleIntent(Intent workIntent) {
while(true) {
Log.i("output", "I'm running!");
try {
Thread.sleep(10000);
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}
}
我将应用程序部署到模拟器,确保单击“调试”按钮。但是我没有看到logcat中输出的任何日志。
我确定我做错了什么 - 帮我弄清楚:D。谢谢!
答案 0 :(得分:0)
android.intent.action.BOOT_COMPLETED
会在设备启动时间之后发送,但仅。你重新启动设备了吗?
您可以直接通过adb发送系统广播,而不是重新启动设备来测试您的应用程序:
./adb shell am broadcast -a android.intent.action.BOOT_COMPLETED -c android.intent.category.HOME -n <your.package.name>/.<YourReceiverClass>
您可以找到更多信息here。
答案 1 :(得分:0)
if (intent.getAction().equals(Intent.ACTION_BOOT_COMPLETED)) {
Intent i = new Intent(context, SnapshotService.class);
context.startService(i);
}
比较直接与意图值而不是制作字符串 还有一件事
在Android 3.1及更高版本上,用户必须在任何清单注册的BroadcastReceiver工作之前启动您的一项活动。 检查此https://stackoverflow.com/a/17067671/3288890