how to remove shadow below actionbar with AppCompat.Light.NoActionBar?

后端 未结 10 1297
盖世英雄少女心
盖世英雄少女心 2020-12-03 00:35

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

10条回答
  •  时光取名叫无心
    2020-12-03 01:13

    If your are not using Toolbar on the Layout and you have the default toolbar from AppCompactActivity this can help you

    @Override
        protected void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
    
    getSupportActionBar().setElevation(0);
    

    At least it worked for me.

    Regards,

提交回复
热议问题