I want to call a new action from an inner class, which is defined in class d, which extends Activity .... a piece of code written in one of the methods of this Inner class:
Purpose of Intent = New Intent (this, Test2.class); startActivity (intent);
Test2 is placed inside the same package as my main clans, and eclipse shows me an error d "Intent constructor (test.MyTimer, Class) is undefined" .......
What is the solution?
source
share