Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
456 views
in Technique[技术] by (71.8m points)

java - Difference between mContext.get().getApplicationContext() and getActivity()

Why in my fragment getActivity() works but mContext.getApplicationContext() does not?

mDobPickerDialog = new DatePickerDialog(getActivity(), new OnDateSetListener() {

            public void onDateSet(DatePicker view, int year, int monthOfYear, int dayOfMonth) {
                Calendar newDate = Calendar.getInstance();
                newDate.set(year, monthOfYear, dayOfMonth);
                mDobEditText.setText(mDateFormatter.format(newDate.getTime()));
            }

        },newCalendar.get(Calendar.YEAR), newCalendar.get(Calendar.MONTH), newCalendar.get(Calendar.DAY_OF_MONTH));

My mContext is declared and initialized as:

private Context mContext;

public DisplayProfileFragment(Context context) {
        super();
        mContext = context;
    }
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

getActivity() returns the Activity the fragment is associated with.

http://developer.android.com/reference/android/app/Fragment.html#getActivity()

getApplicationContext() returns the global Application context.

http://developer.android.com/reference/android/content/Context.html#getApplicationContext()

As for why getApplicationContext() doesn't work in the code you have provided, because it shouldn't. You are creating a dialog on the current activity, for which you need the activity context, the application context should be used for functions like receivers, functions that should be destroyed when the application is destroyed, not when the activity is destroyed.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...