I am a beginner in android development.I am very confused of seeing this shadow above booking details.i want to know what it is? And how to fix it?
[
I am a beginner in android development.I am very confused of seeing this shadow above booking details.i want to know what it is? And how to fix it?
[
If you want to hide shadow from upper part of the drawer then ..
1) It is your actionbar drawn partially. so it is appearing as shadow.
2) to Remove that shadow , I had to apply app:insetForeground="@null"
to the NavigationView
in xml
drawerLayout.setScrimColor(getResources().getColor(android.R.color.transparent));
Try this code .