How to change background color of the snackbar?

后端 未结 16 769
温柔的废话
温柔的废话 2020-12-07 19:28

I am showing snackbar in DialogFragment Within the Positive click of alertDialog. Here is my code snippet.

Snackbar snackbar = Snackbar.make(view, \"Please e         


        
16条回答
  •  情歌与酒
    2020-12-07 20:09

    With the Snackbar included in the Material Components Library (com.google.android.material.snackbar.Snackbar) just use the setBackgroundTint method.

        Snackbar snackbar = Snackbar.make(view, "Snackbar custom style", Snackbar.LENGTH_LONG);
        snackbar.setBackgroundTint(ContextCompat.getColor(this,R.color.secondaryColor));
        snackbar.show();
    

提交回复
热议问题