B4A Question How to send parameters from App_A to App_B2? - Hamied Abou Hulaikah (first post)    May 23, 2022   (1 reaction) Incorrect: GetStartingIntent must be inside the receiver app. I modified your examples above as sd_treelist example send intent to shoplistview example. check in these examples:- 1- manifest file of shoplistview (receiving intent) 2- check the shoplistview packagename is changed to be the same that B4A Question Get NotificationID within Activity started by Notification [SOLVED] - Erel (first post)    May 27, 2021   (1 reaction) Tip: the correct way to work with Activity.GetStartingIntent: Sub Process_Globals Private OldIntent As Intent End Sub Sub ActivityResume Dim in As Intent = Activity.GetStartingIntent If in.IsInitialized And in <> OldIntent Then OldIntent = in '.... End If B4A Question NB6 and B4XPages - Erel (first post)    Aug 04, 2020   (10 reactions) Good question. 1. Main module, expand the template region and add in Activity_Resume: B4XPages.MainPage.ActivityResume 2. Add to B4XMainPage: Public Sub ActivityResume Dim in As Intent = B4XPages.GetNativeParent(Me).GetStartingIntent If in.IsInitialized And in <> LastIntent Then B4A Example [B4X] Supabase - Authentification SignIn with Google - Alexander Stolte    Aug 31, 2023   (14 reactions) B4A: Add to the manifest editor: AddActivityText(Main, <intent-filter> <action android:name="android.intent.action.VIEW" /> <category android:name="android.intent.category.DEFAULT" /> <category android:name="android.intent.category.BROWSABLE" /> <data android:scheme="$PACKAGE$" /> </inte B4A Question Read (WhatsApp/Media/WhatsApp Video) Files - KMatle (first post)    Jun 28, 2021   (1 reaction) ExtrasToString) If Activity.GetStartingIntent.Action="android.intent.action.MAIN" Then Return 'App is started via icon (must be started with 'share to' End If FileList=GetUrisFromStartingIntent(Activity.GetStartingIntent) If FileList.Size>0 Then For i=0 To FileList.S B4A Question Open a module or activity with the service in the background - Erel (first post)    Jul 25, 2023   (1 reaction) You need to call StartActivity(Main) With some logic you can catch this intent and open a specific page. It should be done in Activity_Resume using Activity.GetStartingIntent. B4A Question [SOLVED] B4X Intent based camera - fbritop (first post)    Mar 01, 2022   (1 reaction) Solved. There was a missed line regarding Activity_Resume in Main that was not supposed to be there. If Activity.GetStartingIntent = lastintent Then Return B4A Code Snippet B4x pages GetStartingIntent - Erel (first post)    Jul 21, 2020   (3 reactions) Simpler solution:
Dim in As Intent = B4XPages.GetNativeParent(Me).GetStartingIntent
Remember that the native parent of all pages, in B4A, is the Main activity. B4A Question Get result of an Intent in Activity_Resume - Erel (first post)    Sep 24, 2020 When you call StartActivityForResult => you get the result in ion_Event.
Activity.GetStartingIntent serves a different purpose: https://www.b4x.-shared-images-from-other-apps.81041/#content B4A Library SumUp mobile Payment - PhiloSophical (first post)    Mar 25, 2021   (1 reaction) Log(Activity.GetStartingIntent.ExtrasToString) looks like this:- Bundle @NeverGiveUp2 - thank you so much for this code example - brilliant! Still works after 7 years! I discovered yesterday - Thank you forum! Page: 1   2   3   4   5   6   7   Powered by ColBERT |