Remove android.widget.Toolbar shadow

后端 未结 10 1274
庸人自扰
庸人自扰 2021-02-02 05:34

Using API21+ Toolbar:

// Toolbar
Toolbar toolbar = new Toolbar(this);
toolbar.showOverflowMenu();

Would like to remove its shadow

10条回答
  •  清酒与你
    2021-02-02 06:05

    When you add elevation 0dp on your appbarlayout, toolbar will be completely diappeared. So that you should also add translationZ in your xml.

    android:translationZ="0.1dp"
    app:elevation="0dp"
    

    Than it will look like ->

      
    
        
    
    

提交回复
热议问题