We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello . I was wondering if there is any way to Add on Dismiss Listener ?
The text was updated successfully, but these errors were encountered:
if you are using a custom view, you can make that.
... MaterialStyledDialog.Builder builder = new materialStyledDialog.Builder(this); builder.setCustomView(custoView); //<----- builder.setHeaderColor(...); builder.setIcon(...);
final Dialog dialog = builder.show(); //<-----
mButtomInCustomView.setOnClickListener(new View.OnClickListener() { @OverRide public void onClick(View view) { ... dialog.dismiss(); //<----- } });
Sorry, something went wrong.
I think the author is suggesting there be a way to listen for an onTouchOutside event. This is much needed.
No branches or pull requests
Hello .
I was wondering if there is any way to Add on Dismiss Listener ?
The text was updated successfully, but these errors were encountered: