`

getApplicationContext()与this,getBaseContext()

阅读更多
转自:http://stackoverflow.com/questions/1026973/android-whats-the-difference-between-the-various-methods-to-get-a-context


In various bits of Android code I've seen:

public class MyActivity extends Activity {
    public void method() {
       mContext = this;    // since Activity extends Context
       mContext = getApplicationContext();
       mContext = getBaseContext();
    }
}
However I can't find any decent explanation of which is preferable, and under what circumstances which should be used.

Pointers to documentation on this, and guidance about what might break if the wrong one is chosen, would be much appreciated.



I agree that documentation is sparse when it comes to Contexts in Android, but you can piece together a few facts from various sources.

This blog post on the official Google Android developers blog was written mostly to help address memory leaks, but provides some good information about contexts as well:

In a regular Android application, you usually have two kinds of Context, Activity and Application.

Reading the article a little bit further tells about the difference between to the two and why you might want to consider using the application Context (Activity.getApplicaitonContext()) rather than using the Activity context ("this"). Basically the Application context is associated with the Applicaiton and will always be the same throughout the life cycle of you app, where as the Activity context is associated with the activity and could possible be destroyed many times as the activity is destroyed during screen orientation changes and such.

I couldn't find really anything about when to use getBaseContext() other than a for a one liner from Dianne Hackborn, one of the Google engineers working on the Android SDK:

Don't use getBaseContext(), just use the Context you have.

That was from a post on the android-developers newsgroup, you may want to consider asking your question there as well because a handful of the people working on Android actual monitor that newsgroup and answer questions.

So overall it seems preferable to use the global application context when possible.


I got bad window token errors when using application context to Progress Dialog. So i used activity context instead.
分享到:
评论
1 楼 xukaiyin 2015-06-25  
全英文

相关推荐

    Toast显示问题

    为避免这种情况,尽量使用`getApplicationContext()`或`getBaseContext()`创建`Toast`,而不是使用`Activity`的`this`。如果在`Activity`中使用`this`,确保在`Activity`的`onDestroy()`方法中调用`toast.cancel()`...

    Android Context使用例子.

    一般通过`this`或`getContext()`获取,适合执行与当前Activity相关的操作。 三、`Context`的常用方法 1. **获取资源**:如`getString()`, `getColor()`, `getDrawable()`等,用于获取字符串、颜色、图片等资源。 2....

    安卓Android Context类实例详解

    通常通过`this`关键字或`getBaseContext()`方法获取,适用于与当前Activity直接相关的操作,如启动新的Activity或显示Dialog。 3. **Service Context**:来自Service对象,与Service生命周期绑定。 每种Context的...

    Android中getActivity()为null的解决办法

    在需要Context的地方,可以通过`MyApplication.getInstance().getBaseContext()`来获取。 总结来说,避免`getActivity()`返回null的关键在于理解Fragment和Activity的生命周期,并选择合适的方式来存储和获取...

    android基础教程之context使用详解

    `Activity Context`通常由`Activity`实例提供,例如通过`this`关键字或`getBaseContext()`获取,它的生命周期与`Activity`相同,随着`Activity`的创建和销毁而创建和销毁。而`Application Context`则是通过`...

Global site tag (gtag.js) - Google Analytics