-2

在android中,下面的代码有什么区别吗?

  1. 新意图(这个,MyOtherActivity.class);
  2. 新意图(Context.this,MyOtherActivity.class);
  3. 新意图(getApplicationContext(),MyOtherActivity.class);

请详细解释。示例代码也很感激。

提前致谢。

4

1 回答 1

1
  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.
于 2012-09-15T07:52:51.157 回答