在android中,以下代碼是否有區別?如何使用Intent構造函數?
- new Intent(this,MyOtherActivity.class);
- 新意圖(Context.this,MyOtherActivity.class);
- 新意圖(getApplicationContext(),MyOtherActivity.class);
請details.example代碼解釋也表示讚賞。
在此先感謝。
在android中,以下代碼是否有區別?如何使用Intent構造函數?
請details.example代碼解釋也表示讚賞。
在此先感謝。
1> new Intent(this, MyOtherActivity.class); here this means the context of your current
activity
3> new Intent(getApplicationContext(), MyOtherActivity.class); here getApplicationContext() means the context of your application.
*您應該閱讀* [文件和指南](http://developer.android.com/guide/components/intents-filters.html) – adatapost
爲什麼你要問? –