EDIT: I realized I may have put this in the wrong forum section. Please move as needed...
So far I'm loving B4A, I have a question regarding a notification activity. I'm trying to call an activity outside my application when the notification is clicked. It appears the notification will only allow an activity inside my app to run. Is this correct? Is there a way around it?
You can pass an intent instead of an activity.
For example the following code will start Gmail app:
B4X:
Dim n As Notification
n.Initialize
n.Icon = "icon"
Dim i As Intent
i.Initialize("", "")
i.SetComponent("com.google.android.gm/com.google.android.gm.ConversationListActivity")
n.SetInfo("Title", "Description", i)
n.Notify(1)
Note that you should write the full component name (package name / activity).