i’m getting error
android.content.ActivityNotFoundException
detailed
No activity found to handle Intent{com.alpha.beta.SQLVIEW}
even though in my manifest file i have :
<activity
android:name=".SQLView"
android:label="@string/title_activity_app" >
<action android:name="com.alpha.beta.SQLVIEW" />
<category android:name="android.intent.category.DEFAULT" />
</activity>
plus my intent looks like:
Intent mi = new Intent("com.alpha.beta.SQLVIEW");
startActivity(mi);
The name used in the intent SQLVIEW is different from the one in the manifest SQLView..
in the intent:
in the manifest:
They should be the same, you can also use the intent this way..