Remove android.widget.Toolbar shadow

后端 未结 10 1288
庸人自扰
庸人自扰 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:14

    Use app:elevation="0dp" instead of android:elevation on your toolbar. If it is not work, put your toolbar inside of a AppBarLayout and set app:elevation="0dp":

    
                ...
    
    

提交回复
热议问题