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

后端 未结 10 1301
盖世英雄少女心
盖世英雄少女心 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:12

    Just use after the super.onCreate(savedInstanceState);

    if(getSupportActionBar() != null)
    {
       getSupportActionBar().setElevation(0);
    }
    

提交回复
热议问题