Use the following code to get the context in Fragment
public static class SomeFragment extends Fragment{
@Override
public void onAttach(Activity activity) {
super.onAttach(activity);
context = activity.getApplicationContext();
}
}