I infodata New Member Licensed User Longtime User Nov 16, 2011 #1 When I try to dynamically create Activity (is it possible to do so at all?) with the following code: Dim Xa As Activity StartActivity(Xa) I get following error (attached) at the step of compiling, not before: Looks strange ... Attachments Untitled-1.png 10.7 KB · Views: 191
When I try to dynamically create Activity (is it possible to do so at all?) with the following code: Dim Xa As Activity StartActivity(Xa) I get following error (attached) at the step of compiling, not before: Looks strange ...
Erel B4X founder Staff member Licensed User Longtime User Nov 16, 2011 #2 It is not possible to create new activities at runtime in Android. All activities must be defined in the manifest file. Upvote 0
It is not possible to create new activities at runtime in Android. All activities must be defined in the manifest file.
I infodata New Member Licensed User Longtime User Nov 16, 2011 #3 Erel said: It is not possible to create new activities at runtime in Android. All activities must be defined in the manifest file. Click to expand... I see. It was looking something like that. Back to the drawing board ... Upvote 0
Erel said: It is not possible to create new activities at runtime in Android. All activities must be defined in the manifest file. Click to expand... I see. It was looking something like that. Back to the drawing board ...