I\'m switching my old Dialogs to DialogFragment, but the themes and styles don\'t seem to be working.
I\'m using the DialogFragment from the compatibility library v
I believe you need to set the theme on the actual Dialog and not the Fragment
Use this constructor to create your AlertDialog:
AlertDialog.Builder(Context context, int theme)
ie
AlertDialog.Builder builder = new AlertDialog.Builder(getActivity(), theme)