I am getting an ActivityNotFoundException in the following code:
ActivityNotFoundException
Main.java
Intent intent = new Intent(); intent.setAction(\"com.tes
To be safe you can also call your new activity like this:
Intent intent = new Intent(); intent.setClass(this, THECLASSNAME); startActivity(intent); //
However, you must add the activity to the androidmanifest - and write a . in front of it, e.g.