How to bring view in front of everything? How to bring view in front of everything? android android

How to bring view in front of everything?


You can call bringToFront() on the view you want to get in the front

This is an example:

    yourView.bringToFront();


With this code in xml

 android:translationZ="90dp"


I've been looking through stack overflow to find a good answer and when i couldn't find one i went looking through the docs.

no one seems to have stumbled on this simple answer yet:

ViewCompat.setTranslationZ(view, translationZ);

default translation z is 0.0