B4A Question Can Activity.GetStartingIntent be reset or cleared? - Gregg Homan    Feb 19, 2014   (1 reaction) Activity.GetStartingIntent do not keep returning the same intent.
Q1) Can anyone suggest a way to...
Intent1 = Activity.GetStartingIntent
If Intent1.HasExtra("android.intent.extra.STREAM...Hello,
I use the code (below) within Activity_Create to process starting intents stemming from... B4A Question Reset Activity.GetStartingIntent.Action - bluedude    Nov 28, 2014 Hi,
On Kitkat my code to reset GetStartingIntent works but on Android 4.3 it does not work:
Activity.GetStartingIntent.Action = ""
Any suggestions to reset the intent and clear... B4A Question Activity.GetStartingIntent - SetActivityResult - vb1992    Jul 25, 2012 Is there any example code for:
Activity.GetStartingIntent / SetActivityResult - makes it possible....
SetActivityResult (Result As Int, Data As Intent)
(Advanced) Sets the result that the calling Activity will get after calling StartActivityForResult.... B4A Class [class][B4X] Google OAuth2 - Erel    Oct 29, 2025   (44 reactions)   tags: wait, Google b4i.example2 with your package name. #UrlScheme: b4i.example2 3. B4A code: Sub Activity_Resume oauth2.CallFromResume(Activity.GetStartingIntent) End Sub B4i code: Sub Application_OpenUrl (Url.... B4A: Add to the manifest editor: AddActivityText(Main, <intent-filter> <action android:name... B4A Tutorial Receiving shared images from other apps - Erel    Jun 26, 2017   (19 reactions)   tags: Receiving, shared, images As Intent
End Sub
Sub Globals
End Sub
Sub Activity_Create(FirstTime As Boolean)
End Sub
Sub Activity_Resume
If IsRelevantIntent(Activity.GetStartingIntent) Then
Dim in As JavaObject = Activity...:
AddActivityText(Main,
<intent-filter>
<action android:name="android.intent.action.SEND... the starting intent in Activity_Resume and see whether it is a sharing intent. If so then we extract... B4A Question Bug with Activity.GetStartingIntent? - Erel (first post)    Apr 5, 2013 It is better to use the default task modes. You can manually close the other activities if needed.... B4A Question Activity.getstartingintent problem - paragkini (first post)    Jun 10, 2012 It worked.
Thanks Erel. It was pretty simple. Working on the getstartingintent to find out which application started my application. Facing issues though. But will revert if none of my efforts help.... B4A Question GetStartingIntent can get mType? - scsjc    Jul 24, 2018 some one, know how get a mtype inside: Activity.GetStartingIntent ? 70326... B4A Question How to refer to Activity in B4A 's library - Theera    Jul 5, 2025 Refer to this I've tried to use AI answer for me, but it doesn't help me clearly. Public Sub CheckForReceivedFiles As LoadResult Dim Activity As Activity = B4XPages.GetNativeParent(B4XPages.MainPage) If IsRelevantIntent(Activity.GetStartingIntent) Then Dim in As Intent = Activity.GetStartingIntent Dim uri As String If in.HasExtra("android.intent.extra.STREAM") Then uri = in.As(JavaObject).RunMethod("getParcelableExtra... B4A Tutorial NFC - Reading and Writing - Erel    Aug 16, 2022   (24 reactions)   tags: NFC Activity_Resume. This will force the system to send the intent to our activity instead of sending it to a different app. You should call NFC.DisableForegroundDispatch in Activity_Pause. Activity_Resume will be called when an intent is sent to our activity. We need to check two things: 1. This intent is related to a tag discovery. 2. This is a new intent. Sub Activity_Resume 'forces all nfc intents to be sent to this activity nfc.EnableForegroundDispatch Dim si As Intent = Activity... Page: 1   2   3   4   5   6   7   |