marcoscgdev / DialogSheet

An Android library to create fully material designed bottom dialogs similar to the Android Pay app.

Home Page:https://github.com/marcoscgdev/DialogSheet

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

How to set color of the dialog sheet background?

snajdovski opened this issue · comments

I can't find an answer to this question, is it possible to change the color of the background of the dialog sheet?

You can change the background color of the dialog with the following line of code:

.setBackgroundColor(Color.BLACK)

Or if you want to use a color resorce:

.setBackgroundColorRes(R.color.yourColor)