How to change background color of the snackbar?

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

    It's too late but In case someone still needs help. Here is the working solution.

          Snackbar snackbar = Snackbar.make(mainView, text, Snackbar.LENGTH_LONG);
        View snackBarView = snackbar.getView();
        snackBarView.setBackgroundColor(context.getResources().getColor(R.color.btn_background_color));
        snackbar.show();
    

提交回复
热议问题