Remove android.widget.Toolbar shadow

后端 未结 10 1286
庸人自扰
庸人自扰 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 05:57

    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
      appBarLayout.outlineProvider = null
    }
    

提交回复
热议问题