Issue with status bar transparent
- Dominant language
- Kotlin
- Stars
- 17.2k
- Forks
- 3.7k
- PR merge metrics
- No merged PRs in 30d
Description
### Description
When the status bar is transparent, Fresco doesn't draw the image underneath it
### Reproduction
Just run: https://github.com/omainegra/furry-octo-potato
As an extra, you can toggle the commented code and see how it works with a regular `ImageView`
#### Issue

#### Expected

**Update**
After playing with it I found that redrawing after `ViewCompat.setOnApplyWindowInsetsListener` fixes the problem.
```kotlin
ViewCompat.setOnApplyWindowInsetsListener(findViewById(R.id.draweeView)) { view, insetsCompat ->
view.requestLayout()
insetsCompat
}
```
### Additional Information
* Fresco version: 1.11.0
* Platform version: [{ Nexus 6P, Android 8.1 }, { Pixel 3, Android 9 }]
Contributor guide
Assessment
This issue has not been assessed yet.