Is there a way to get the current Context instance by using a static method?
I'm looking for that way because i hate saving the context instance each time it changes.
|
Is there a way to get the current Context instance by using a static method? I'm looking for that way because i hate saving the context instance each time it changes. |
|||||||
|
|
Do this In Android Manifest file declare following
then write the class
Now every where call |
|||||||||||||||||||||
|
|
No, I don't think there is. Unfortunately, you're stuck calling |
|||||||||
|
|
Depends on what you are using the context for, I can think of at least one disadvantage to that method: If you are trying to create an AlertDialog with AlertDialog.Builder, the Application context won't work. I believe you need the context for the current Activity... |
|||
|
|
If you're open to using RoboGuice, you can have the context injected into any class you want. Here's a small sample of how to do it with RoboGuice 2.0 (beta 4 at time of this writing)
|
|||
|
|
|
Here is an undocumented way to get an Application (which is a Context) from anywhere in the UI thread. It relies on the hidden static method
Note that it is possible for this method to return null, e.g. when you call the method outside of the UI thread, or the application is not bound to the thread. It is still better to use @RohitGhatol's solution if you can change the Application code. |
|||
|
|
I think you need a body for the
|
||||
|
|
|
I just released a jQuery inspired framework for Android called Vapor API that aims to make app dev simpler. The central
A The downside of course is that you run the risk that You can also set the context manually if you are not using
Also, much of the Vapor API framework uses this stored context inherently which might mean you needn't store it yourself at all if you decide to use the framework. Check out the site for more info and samples. Hope that helps :) |
|||
|
|
|
You can use the following :
EDIT: MainActivity.java:
any other class:
|
|||||
|