I integrated this color picker as a module in my application with some changes.
I find some strange style that I donβt know where it comes from. Firstly, there is a solid blue background behind the cursor when you click EditText
:

And when you long click on the text in EditText
to open the normal copy / paste options dialog, I find that there is a big solid blue background behind the dialog:

Where can they be, and how to remove them?
The style applicable to the dialog is as follows:
<style name="MyAlertDialogStyleLight" parent="Theme.AppCompat.Light.Dialog.Alert"> <item name="colorAccent">@color/textColorPrimary</item> <item name="android:textColorPrimary">@color/textColorPrimary</item> <item name="android:textColor">@color/textColorPrimary</item> <item name="android:textColorAlertDialogListItem">@color/textColorPrimary</item> <item name="android:textStyle">normal</item> <item name="android:textSize">14sp</item> <item name="android:background">@color/colorPrimary</item> <item name="android:windowBackground">@android:color/transparent</item> <item name="android:windowTitleSize">16sp</item> </style>
source share