How to change background color of the snackbar?

后端 未结 16 736
温柔的废话
温柔的废话 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:27

    you can do it like this

    Snackbar snackbar;
    snackbar = Snackbar.make(view, "Message", Snackbar.LENGTH_SHORT);
    View snackBarView = snackbar.getView();
    snackBarView.setBackgroundColor(yourColor);
    TextView textView = (TextView) snackBarView.findViewById(android.support.design.R.id.snackbar_text);
    textView.setTextColor(textColor);
    snackbar.show();
    

提交回复
热议问题