0

Within my dialog fragment, I am looking to display the name of the activity from which the dialog fragment was created.

I have tried the following:

getActivity().getCallingPackage().getClass().getSimpleName();

But this throws a null point exception on getClass().

Any idea of how I could the class name the dialog fragment was created from?

Dportology
  • 836
  • 1
  • 9
  • 32

1 Answers1

1

DialogFragment, as a Fragment, is always attached to activity. Hence, you do not need to call getCallingPackage. Instead, from within your dialog fragment, just call getActivity().getClass().getSimpleName()

mis3k
  • 144
  • 1
  • 8