How to get application object into fragment class

AndroidAndroid FragmentsAndroid Fragmentactivity

Android Problem Overview


I am changing my android mobile app to support both tablets and mobile phone. For this I am changing my activity class into fragment. In my activity class I have an instance of my application class created as below:

appCtx = (UnityMobileApp) getApplication();

Where UnityMobileApp is my Application class.

Now I want to create the same instance in my fragment class. Can you guys please help me solve this?

Android Solutions


Solution 1 - Android

Use appCtx = (UnityMobileApp) getActivity().getApplication(); in your fragment.

Solution 2 - Android

The method getActivity() may have possibility to return null. This may crash your app.So it is safe to use that method inside the onActivityCreated(). Eg:

private UnityMobileApp appCtx;
.
.
...
@Override
public View onCreateView(...){
...
}

@Override public void onActivityCreated(Bundle savedInstanceState) { 
     super.onActivityCreated(savedInstanceState); 
     appCtx = ((UnityMobileApp) getActivity().getApplication()); 
} 
...
//access the application class methods using the object appCtx....

This answer is derived from Dzianis Yafima's answer asked by Ognyan in comments. Thus the Credit goes to Dzianis Yafima's and Ognyan in stackoverflow.

Solution 3 - Android

As you are trying yo use application context from fragment you can not use getApplication() because that isn't method of Fragment class
So you first have to use the getActivity() which will return a Fragment Activity to which the fragment is currently associated with.

to sumup in your code,

instead of this.getApplication() you have to use getActivity.getApplication()

know more about getActivity() from android documentation

Solution 4 - Android

Alternatively using Kotlin

fun bar() {
   (activity?.application as UnityMobileApp).let {
      it.drink()
   } ?: run {
      Log.d("DEBUG", "(╯°□°)╯︵ ┻━┻")
   }
}

Solution 5 - Android

A Newer way:

Application application = requireActivity().getApplication();

Solution 6 - Android

If someone is looking for a Kotlin version. This works for me:

(activity?.application as YourApplicationClass)

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionRakesh GourineniView Question on Stackoverflow
Solution 1 - AndroidbiegleuxView Answer on Stackoverflow
Solution 2 - AndroidBharathRaoView Answer on Stackoverflow
Solution 3 - AndroidIrony StackView Answer on Stackoverflow
Solution 4 - AndroidAlex NolascoView Answer on Stackoverflow
Solution 5 - AndroidhataView Answer on Stackoverflow
Solution 6 - AndroidclauubView Answer on Stackoverflow