Android: I cannot remove elevation / shadow on my toolbar

前端 未结 10 2265
名媛妹妹
名媛妹妹 2020-12-08 01:57

Hi i would like to remove the elevation and shadow effect from my toolbar for API 21 and greater. Below is what i have tried

setSupportActionBar(mToolbar);
          


        
10条回答
  •  眼角桃花
    2020-12-08 02:29

    Use app:elevation="0dp" in your AppBarLayout. Make sure you put Toolbar inside your AppBarLayout like this -

         
    
            
    
        
    

    and add this line to your activity - findViewById(R.id.appBarLayout).bringToFront();
    This will bring the AppBar to front.

提交回复
热议问题