Reputation: 369
So basically, I have a method that requires a Context
in order to perform several tasks.
public void openDatePicker() { Context c; }
I want to know, how to define a context of the method caller so I don't have to insert it as a parameter each time I call the method.
Upvotes: 8
Views: 13548
Reputation: 443
Lets have an basic understanding of Context.
Context allows access to application-specific resources and classes, as well as calls for application-level operations such as launching activities, broadcasting and receiving intents, etc.
A Context represents your environment. It represents the state surrounding where you are in your system.
An Android app has activities. Context is like a handle to the environment your application is currently running in. The activity object inherits the Context object.
So, how to access Context in your application ?
Example: View.getContext() returns the Context the view is currently running in. Usually the currently active Activity.
View mView = this.getLayoutInflater().inflate(R.layout.myLayout, myViewGroup);
Or,
Intent mIntent = new Intent(this, MyActivity.class);
this.startActivity(mIntent);
Example: Bind an application-wide class.
Intent mIntent = new Intent(this, MyPersistent.class);
MyServiceConnection mServiceConnection = new MyServiceConnection();
if (mServiceConnection != null) {
getApplicationContext().bindService(mIntent, mServiceConnection, Context.BIND_AUTO_CREATE);
}
ContextWrapper is, "Proxying implementation of Context that simply delegates all of its calls to another Context. Can be subclassed to modify behavior without changing the original Context." (as per javadocs)..
Now, a question might arise ! How would one access the Context object inside of a class that does not extend Activity ? So, it can be achieved by :
Example:
public class MyActivity extends Activity {
private Context context;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
context = getApplicationContext();
new Helper(context);
}
}
public class Helper {
Context mContext;
Helper(Context ctx){
this.mContext= ctx;
}
//Now you can use this mContext anywhere in your class.
}
And finally, to get Context anywhere in your application you can define a new class in your application :
public class MyContext extends Application {
private static MyContext instance;
@Override
public void onCreate() {
instance = this;
super.onCreate();
}
public static Context getContext(){
return instance;
// or return instance.getApplicationContext();
}
}
In your manifest you need to add this class to the "Name" field in the "Application" tab, like this:
<application
android:name="com.example.app.MyContext "
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
.......
<activity
......
</activity>
To get Context anywhere in your application, i.e. in any class of your project, you can call the function of this class, like this:
MyContext.getContext();
This function will return a Context that you can use to carry out your tasks.
So, coming to your question. I guess the last two methods can solve your problem i.e passing the Context object to the class and define a new class that extends Application.
That's all @Achmad Naufal Syafiq. This is my best effort to help you out.
Upvotes: 18
Reputation: 5534
This can be done by two ways..
Make a class say Functions
and make you public static method inside it.
public class Functions{
public static void openDatePicker(Context c){
// Do your work where you can use c as Context
}
}
and call it Wherever you want like
Function.openDatePicker(MainActivity.this);
as @UmarZaii Suggested You can define it once in the constructor.
public class CustomDatePicker {
private Context context;
public ClassLocationModel(Context context) {
this.context = context;
}
public void openDatePicker() {
// Do your work where you can use "context" as Context
}
}
and to you that you have to initialize this class once in your Activity
CustomDatePicker customDatePicker = new CustomDatePicker(MainActivity.this);
// to use its methods
customDatePicker.openDatePicker();
I hope it will Help.
Upvotes: 2
Reputation: 1351
You can define it once in the constructor so that everytime you want to use the method, you don't have to define it in the parameter. Try this.
public class CustomDatePicker {
private Context context;
public ClassLocationModel(Context context) {
this.context = context;
}
public void openDatePicker() {
//Use context that has been passed through constructor here
}
}
So, basically the trick is to pass context in the parameter of the contructor only ONCE and you can repetitively use openDatePicker method without passing any context inside the parameter.
Upvotes: 1
Reputation: 2295
You can one of the many dependency injection libraries to inject not just context but any dependencies that you have in a particular file.
You can have a look at Dagger2 for example
This will help you exactly to create different contexts
Upvotes: 1