5/23/2015

How to get the context in a fragment? - Android Apps


public static class SomeFragment extends Fragment{
    Context context;

    @Override
    public void onAttach(Activity activity) {
        super.onAttach(activity);
        context = activity.getApplicationContext();
    }
}

No comments:

Post a Comment