Hey, I need to make an `AndroidView` to show a spe...
# compose
n
Hey, I need to make an
AndroidView
to show a specific old view in my app. I have an issue, when I make my screen, I have a column with an header and box with my `AndroidView`inside it. On android 10 and lower i need to call
._clipToBounds_()
on my box. Because without it, I have dark content in front of my header. I think it is my
AndroidView
that take header space outside my box. Did you have any explanation about that ?
Copy code
Column {
  Header()
  Box { -> need clipToBounds or header was hidden by black rectangle on android 10 and lower 
     AndroidView()
     //some content to show in front of the android view
   }
}
t
I do not have experience with AndroidView but Compose components can also draw outside of there proposed drawing area if they want. So i would assume that maybe your View draw outside of its bounds also?