Remove android.widget.Toolbar shadow

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

    set "#00000000" to the backgroundColor of toolbar , remember that: if you use CoordinatorLayout and AppBarLayout ,you should remove the app:layout_behavior="@string/appbar_scrolling_view_behavior" of your contentView , I have made this elementary mistake.

提交回复
热议问题