hallvard
11/24/2018, 11:48 AMonItemClickListener
tied to a ListView
, i launched a coroutine to do some networking. Idea didn't object, but in runtime, nothing happened. Turns out I need to do this@MyActivity.launch { ... }
(instead of simply launch { ... }
). So why didn't Idea warn me? Is this an issue? Or expected behaviour? And where did my coroutine go? Is it lurking around in the darkness, ready to bite later on, when I least expect it? I found nothing in the logcat to explain this.