I have a RecyclerView, and in its adapter, I have created something similar to an OnLongClickListener, which I am calling an OnEntryLongClick
RecyclerView
OnLongClickListener
OnEntryLongClick
Try putting an style for your Dialog that extends Theme.AppCompat.Light.Dialog.Alert
AlertDialog.Builder builder = new AlertDialog.Builder(getActivity(), R.style.MyDialogTheme);
This works for me.
Greetings