How to make the support Toolbar background transparent?

后端 未结 2 1732
南笙
南笙 2020-12-19 03:25

Is there a way to make the new Android support Toolbar:

android.support.v7.widget.Toolbar

Have a transparent background?

I tried se

2条回答
  •  攒了一身酷
    2020-12-19 03:52

    To answer Nicholas Pesa's question and maybe some others in the future you could set the alpha with a float by using a ratio, something like.

    mToolbar.getBackground().setAlpha((int)(myFloatValue) * 255);
    

提交回复
热议问题