Search code examples
androidandroid-contextfragmentmanager

FragmentManager from application context


Is there a way to get FragmentManager from application context? I want to use ImageLoader or BitmapFun to store some bitmaps that I download from server. Both class require a FragmentManager to use to retain the cache over configuration changes such as an orientation change. In my case I want to pre-download the images before I actually "need" them.


Solution

  • Is there a way to get FragmentManager from application context?

    No, because fragments are part of an activity.

    In my case I want to pre-download the images before I actually "need" them.

    Then use a different library, one that does not have a dependency upon fragments.