I tried to remove the shadow below the toolbar with the Theme.AppCompat.Light.NoActionBar, using every recommendation of people who have ever answer it before, but no one wo
If your are not using Toolbar on the Layout and you have the default toolbar from AppCompactActivity this can help you
AppCompactActivity
@Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); getSupportActionBar().setElevation(0);
At least it worked for me.
Regards,