colorpicker
colorpicker copied to clipboard
Set button alongside to setOnFastChooseColorListener
Is it possible to add button on dialog when using setOnFastChooseColorListener? Any tries ended unsuccessful. Thank you
I got this working by getting the buttons_layout view and changing the visibility to visible:
colorPicker.getDialogViewLayout().findViewById(R.id.buttons_layout).setVisibility(View.VISIBLE);
Improvement suggestion for OnFastChooseColorListener: Only disable default buttons and keep buttons_layout view still visible to make custom OnButtonListener possible.