Using java Syntax Highlighting
- Intent i=new Intent(this, MyActivity.class);
- startActivity(i);
Parsed in 0.030 seconds, using GeSHi 1.0.8.4
Is it possible to call MyActivity if it resides in another package? Simply passing in "this" for ApplicationContext in the constructor results in a wrong package name and MyActivity can not be found. Is there a way to do it or do i have to use intent receivers in such a situation?

