I am currently looking into migrating some parts o...
# compose
l
I am currently looking into migrating some parts of an existing app to compose UI and I stumbled upon the following issue: For compatibility reasons, I need to embed a good old xml view. This works well using
Copy code
AndroidView()
, but now I need to place other components above this view that should not exceed the
AndroidView
s bounding boxes. Which means I somehow need a layout component that has exactly the size and position of that
AndroidView
. Any help would be highly appreciated.