I have an application with two Activities, one activity has a button which raises an intent to launch the other Activity. Below is my manifest file:
The code in in the onClickListener to raise the intent is below:
This is the error I am getting:
E/AndroidRuntime( 817): android.content.ActivityNotFoundException: No Activity found to handle Intent { action=com.comp.weightmanagement.CONFIRMATION }
Could anyone tell me what I am doing wrong?
Emnaki Chih
Ranch Hand
Joined: Sep 01, 2004
Posts: 30
posted
0
I've solved the problem, it appears to only work if I specify the Category in the intent filter (I set it to DEFAULT). Strange I though category was optional.