I am getting an ActivityNotFoundException in the following code:
ActivityNotFoundException
Main.java
Intent intent = new Intent(); intent.setAction(\"com.tes
Be sure to declare your activity in the manifest.xml within the aplication:
To start the new Activity:
Intent intent = new Intent(main.this, YourNewActivity.class); startActivity(intent);
Where main stands for the current activity,