I want to create a constraintLayout
with a circle progressBar
in front of a dialog. And it used for a loading screen and lock every action while loading.
But i cannot find anyway to do that.
I searched on Google but cannot find a working solution..
I tried:
layoutTop.bringToFront();
layoutTop.invalidate();
and I put these code more that once in my activity.
But the dialog is always on top of my constraintLayout
.
I used to use ProgressDialog
which is cool and can show on top of everything easily. But it deprecated in API
lv. 26.
Is there other simple method to bring layout in front of a dialog?
Thanks so much of any help!