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... B4A Question GetStartingIntent can get mType? - scsjc    Jul 24, 2018 some one, know how get a mtype inside: Activity.GetStartingIntent ?
70326... 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 to return results to 3rd party applications.
Or how/where would this be used, thanks.
SetActivityResult (Result As Int, Data As Intent)
(Advanced) Sets the result that the calling Activity... B4A Code Snippet B4x pages GetStartingIntent - Erel (first post)    Jul 21, 2020   (4 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 Class [class][B4X] Google OAuth2 - Erel    Oct 29, 2025   (44 reactions)   tags: wait, Google oauth2.CallFromResume(Activity.GetStartingIntent) End Sub B4i code: Sub Application_OpenUrl (Url... B4A Tutorial Receiving shared images from other apps - Erel    Jun 26, 2017   (19 reactions)   tags: Receiving, shared, images Activity_Resume
If IsRelevantIntent(Activity.GetStartingIntent) Then
Dim in As JavaObject = Activity.GetStartingIntent
Dim uri As String = in.RunMethod("getParcelableExtra", Array... 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 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... Page: 1   2   3   4   5   6   7   |