Android Question Panel above ImageView

Sergey_New

Well-Known Member
Licensed User
Longtime User
Please tell me how to position the panel above the ImageView so that the elements on the panel are visible and not obscured by the ImageView.
 

Sagenut

Expert
Licensed User
Longtime User
If I understood correctly, probably it's just a matter of positioning the panel in the right place in the views list.
To have a view in front to other views it needs to be in a lower position on the views tree.
panel.png

In this image the Panel will be in front of the 2 imageviews because it's the last added views and it's in front of everything else before.
You can simply drag and drop an element in the list in the desired position to manage this kind of visibility.
panel2.jpg

In this second image you will have the panel covering Imageview1, but imageview2 will be covering the panel.
Hope I explained it clearly, because I see by myself that I made a bit tricky explanation. 😅
 
Upvote 0

Cableguy

Expert
Licensed User
Longtime User
they need to have the same parent, and their position need to be set relatively to the Parent, and adjust the Z-Order
 
Last edited:
Upvote 0
Top