Łukasz Marczak
Łukasz Marczak
I used to store reference to the tooltip, and if I want to show it again, simply ``` if(tooltip!=null && tooltip.isShown()){ tooltip.hide(); } tooltip = //create and show again ```
I have also faced this issue, got logs like this: ``` D/skia: --- SkAndroidCodec::NewFromStream returned null ```
guys, add jitpack dependency to the top level build.gradle: ``` allprojects { repositories { google() jcenter() maven { url 'https://jitpack.io' } } } ```
@munnadroid as a workaround, you can do the following: 1. request permissions: (`Manifest.permission.WRITE_EXTERNAL_STORAGE, Manifest.permission.READ_EXTERNAL_STORAGE`) 2. I guess your source comes from network, so you may use something like this: `val...
Also tried this, but since Android 10 and above, you shall follow guidelines regarding launching activities from background: https://developer.android.com/guide/components/activities/background-starts The simplest workaround is to request OVERLAY_PERMISSION (allow display over other...
https://github.com/heetch/Android-country-picker/blob/master/src/main/res/mipmap-hdpi/mr_flag.png