I am using the following code to move to another Activity :
Intent intent = new Intent(); String test = \"Navigate\"; intent.setClassName(this.context,test
You need the full classname, including the package:
String test = "your.package.here.Navigate";
(And the Activity defined in the Manifest, but as you can start it with Navigate.class I assume you have already done this).
Navigate.class