Walter Adriano da Silva Member Licensed User Longtime User Aug 4, 2015 #1 What the better way to send data to the next Activity? Is it using CallSub? Is there a way using Intent extras?
What the better way to send data to the next Activity? Is it using CallSub? Is there a way using Intent extras?
ArminKH Well-Known Member Aug 4, 2015 #2 which type of data ? if you want to use a variable in other activity you can dim thems at Process_Global your variables will be accessable from all module Upvote 0
which type of data ? if you want to use a variable in other activity you can dim thems at Process_Global your variables will be accessable from all module
DonManfred Expert Licensed User Longtime User Aug 4, 2015 #3 https://www.b4x.com/android/forum/t...teract-between-activities-and-services.18691/ Upvote 0
Walter Adriano da Silva Member Licensed User Longtime User Aug 12, 2015 #5 I needed exactly that, however I want that the activity to be finished after the use that variable... Upvote 0
I needed exactly that, however I want that the activity to be finished after the use that variable...
Erel B4X founder Staff member Licensed User Longtime User Aug 12, 2015 #6 You can call Activity.Finish after calling CallSubDelayed to close the current activity. Upvote 0