1.http://stackoverflow.com/questions/22966601/what-is-different-between-mainactivity-this-vs-getapplicationcontext/22967165#22967165There are two type...
分类:
移动开发 时间:
2015-05-13 16:30:09
阅读次数:
145
Activity 实际上是应用程序context上下文的一个子集。
子类有的东西父类不一定有
父类有的东西子类一定有
getApplicationContext();生命周期长,只要应用还存活它就存在;
this 生命周期短,只要Activity不存在了,系统就会回收;
其中:getBaseContext(),getApplication(),g...
分类:
移动开发 时间:
2015-04-27 23:50:27
阅读次数:
193
public int getResource(String imageName){ Context ctx=getBaseContext(); int resId = getResources().getIdentifier(imageName, "drawable" ...
分类:
移动开发 时间:
2014-12-22 19:33:06
阅读次数:
237
getApplicationContext() 返回应用的上下文,生命周期是整个应用,应用摧毁它才摧毁
Activity.this的context 返回当前activity的上下文,属于activity ,activity 摧毁他就摧毁
getbasecontext()返回由构造函数指定或setBaseContext()设置的上下文...
分类:
移动开发 时间:
2014-10-20 23:30:12
阅读次数:
333
============问题描述============ 菜鸟一枚,网上搜索很多都是重启应用程序的,代码如下Intenti=getBaseContext().getPackageManager()
.getLaunchIntentForPackage(getBaseContext().getPack...
分类:
其他好文 时间:
2014-10-17 11:38:44
阅读次数:
175
问:this 常常引用当前的 context。但是有些时候,必须使用getBaseContext()来代替this。就是说使用this会引发错误。如下面的例子:Spinner spinner = (Spinner) findViewById(R.id.spinner);spinner.setAdap...
分类:
其他好文 时间:
2014-10-13 13:54:09
阅读次数:
228
System.exit(0);
Intent i =new Intent(getBaseContext(), POU2.class);
i.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
startActivity(i);...
分类:
移动开发 时间:
2014-08-27 16:35:18
阅读次数:
288
getApplicationContext()Application context is
associated with the Applicaition and will always be the same throughout the life
cycle.getBasecontext()s...
分类:
移动开发 时间:
2014-05-24 09:23:43
阅读次数:
249