2012-09-15 88 views
-2

在android中,以下代碼是否有區別?如何使用Intent構造函數?

  1. new Intent(this,MyOtherActivity.class);
  2. 新意圖(Context.this,MyOtherActivity.class);
  3. 新意圖(getApplicationContext(),MyOtherActivity.class);

請details.example代碼解釋也表示讚賞。

在此先感謝。

+0

*您應該閱讀* [文件和指南](http://developer.android.com/guide/components/intents-filters.html) – adatapost

+0

爲什麼你要問? –

回答

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. 
+0

好吧,當我使用這個,上下文或應用程序上下文。 – Selva

+0

對於長時間運行的過程是怎樣的服務,使用應用程序上下文 – Rajendra

+0

感謝rajuendra – Selva