为什么要使用Activity Context而我们可以使用Application Context来加载和访问资源?意味着如果我使用Application Context而不是Activity Context则不会发生异常,那么为什么要使用Activity Context?
例子:
在下面的示例中,如果我在活动onCreate()中使用getApplicationContext()而不是“ this ”指针,它可以正常工作,没有任何异常。
Button button = new Button(getApplicationContext());