文档地址 http://reactnative.cn/docs/0.36/headless-js-android.html
react-native
的官方文档提供了Headless
后台任务Java的API代码,这段代码应该放在哪个文件里,应该怎么使用?
public class MyTaskService extends HeadlessJsTaskService {
@Override
protected @Nullable HeadlessJsTaskConfig getTaskConfig(Intent intent) {
Bundle extras = intent.getExtras();
if (extras != null) {
return new HeadlessJsTaskConfig(
"SomeTaskName",
Arguments.fromBundle(extras),
5000);
}
return null;
}
}
PHPz2017-04-17 17:57:05
這是原生程式碼,新建一個java類別檔案MyTaskService.java,類別檔案內容就是你所貼的程式碼,使用式和原生呼叫service一樣,context.startService(new Intent(this, MyTaskService.class));