作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在我的服务中,我需要调用 onStartCommand
一些需要withContext(Dispatchers.IO)
的方法而是 CoroutineScope(Dispatchers.IO)
喜欢:
Suspend function 'withContext' should be called only from a coroutine or another suspend function
.所以如果
onStartCommand
不能是挂起函数,因为它具有覆盖和
withContext
无法被 CoroutineScope 调用,因为
Inappropriate blocking method call
方法
val url = URL(pokemon.linkImage)
val iS = url.openConnection().getInputStream()
我该如何解决这个问题?
override fun onStartCommand(intent: Intent, flags: Int, startId: Int): Int {
//create the directory on internal storage that will contains all pokemon images
val path = applicationContext.filesDir.absolutePath
val dirName = "/pokeimg"
val dir = File(path, dirName)
if(!dir.exists())
dir.mkdir()
CoroutineScope(Dispatchers.IO).launch {
//get the list of pokemon when they are loaded from repository
val listOfPokemon =
PersistenceSingletonRepository.getInstance(applicationContext).getListOfPokemon()
//download all the image for each pokemon in the list, but only if the image is
//not present in the directory
for(pokemon in listOfPokemon) {
val imageName = "${pokemon.name}.png"
val file = File("${dir.absolutePath}/$imageName")
//check if image not exists on internal storage and if is not an official-artwork
//images that aren't official-artwork has less quality so don't resize
if(!file.exists()) {
//download img
val url = URL(pokemon.linkImage)
val iS = url.openConnection().getInputStream()
val opts = BitmapFactory.Options()
if (!Utils.isBadImage(pokemon.linkImage)) {
//request a smaller image
opts.inSampleSize = 2
}
val bitmap = BitmapFactory.decodeStream(iS, null, opts)
val fOut= FileOutputStream(file)
bitmap?.compress(Bitmap.CompressFormat.PNG, 100, fOut)
fOut.flush()
fOut.close()
}
}
stopSelf()
}
return START_NOT_STICKY
}
最佳答案
您可以放心地忽略该警告,已知它有很多误报。您在 IO 调度程序中启动了协程,该调度程序是为阻塞调用而设计的。
另一方面,使用 ad-hoc CoroutineScope
启动任何东西没有父级也没有生命周期绑定(bind),通常是错误的做法。您应该尊重服务生命周期并取消 onDestroy
中的协程.参见示例 here .
关于android - 不适当的阻塞方法调用,但暂停函数 'withContext' 只能从协程或另一个暂停函数中调用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69066847/
有一条(相对)众所周知的 Perl 公理:“只有 Perl 可以解析 Perl”。我想知道 Perl 6 是否仍然如此? 扩大讨论...考虑到 PyPy 最近的更新,我想到了这个问题。 Perl 独特
这是设置。在上一个问题中,我发现我可以通过子组件中的状态传递对象属性,然后使用 componentDidUpdate 获取该对象属性。在这种情况下,状态和属性都称为到达。 这是基本代码... expo
我运行的是 10.5.2 社区版。我已经标记了 源/主要/资源 作为源目录。我可以右键单击并“编译”某些文件,据我所知,这意味着 IDE 将文件复制到与发送类文件的“com.mydomain.pack
我是一名优秀的程序员,十分优秀!