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
It creates "ColorPickerDialog extends DialogFragment" , so when I use this:
val dialog: ColorPickerDialog = ColorPickerDialog.newBuilder().....create()
I can actually call now dialog.setColorPickerDialogListener , which has the scope of the current class, and that's usually an Actvity/Fragment.
dialog.setColorPickerDialogListener
This can lead to memory leaks and reaching things that are destroyed.
Please offer an alternative which is a real Dialog, instead.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
It creates "ColorPickerDialog extends DialogFragment" , so when I use this:
I can actually call now
dialog.setColorPickerDialogListener
, which has the scope of the current class, and that's usually an Actvity/Fragment.This can lead to memory leaks and reaching things that are destroyed.
Please offer an alternative which is a real Dialog, instead.
The text was updated successfully, but these errors were encountered: