In android,Is there any differences between the following code?
- new Intent(this, MyOtherActivity.class);
- new Intent(Context.this, MyOtherActivity.class);
- new Intent(getApplicationContext(), MyOtherActivity.class);
Please explain in details.example code also appreciated.
Thanks in advance.
1 Answer