Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在android中,下面的代码有什么区别吗?
请详细解释。示例代码也很感激。
提前致谢。
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.