B4A Code Snippet Using StartActivityForResult with JavaObject - Erel    Jun 18, 2020   (11 reactions)   tags: call external for result SubName: StartActivityForResult
Description: This code demonstrates how JavaObject can be used to call external APIs that should be called with Context.startActivityForResult.
Same implementation in... B4A Code Snippet Draw on top of other apps permission - Erel    Sep 5, 2023   (18 reactions) Application.PackageName) StartActivityForResult(i) Wait For ion_Event (MethodName As String... Return True End If End Sub Private Sub StartActivityForResult(i As Intent) Dim jo..., Null) End Sub It is an example of how to use StartActivityForResult in a class. Note that in... B4A Code Snippet SaveAs - Let the user select a target folder + list of other related methods - Erel    Nov 1, 2024   (46 reactions) .TITLE", Title) intent.SetType(MimeType) StartActivityForResult(intent) Wait For... End Sub Sub StartActivityForResult(i As Intent) Dim jo As JavaObject = GetBA ion = jo... B4A Question [Solved] B4XPages and StartActivityForResult - asales    Jun 17, 2020 -startactivityforresult-with-javaobject.40374/#content
but I get this error:
b4xmainpage_getba (java line: 95....intent.extra.ringtone.TYPE", 1)
StartActivityForResult(i)
End Sub
Sub StartActivityForResult..., Array As Object(ion, i))
End Sub
Is possible to use StartActivityForResult in a B4XPage? If yes, how... B4A Question Problem with "startActivityForResult" - JOTHA    Aug 24, 2023 .RuntimeException: Method: StartActivityForResult not found in: anywheresoftware.b4a.BA" appears..., i))
Attached is the log file...
modul_83_startactivityforresult (java line: 10048)
java.lang... B4A Library StartActivityForResult Lib - Ivica Golubovic    Dec 6, 2023   (6 reactions) .
It also contains the OnActivityResult event and StartActivityForResult module which only contains two...)
Dim ActivityForResult As StartActivityForResult
ActivityForResult.Initialize("Ion"..., ResultCode As Int, Data As Intent, ExtraParams() As Object)
If ResultCode = StartActivityForResult... B4A Question StartActivityForResult, get file name and path - Mostez    Aug 21, 2021 -excel")
StartActivityForResult(intent)
Wait For ion_Event (MethodName As String, Args... B4A Tutorial [java] Guide - Using onActivityResult - Erel    Jan 12, 2011 Starting with B4A V1.1 libraries can use startActivityForResult and receive the onActivityResult event. There is a new interface named: IOnActivityResult. public interface IOnActivityResult... it to BA.startActivityForResult: public synchronized void startActivityForResult(IOnActivityResult....startActivityForResult(ion, i); } ion is an instance variable. When the user calls Listen we create a new... by calling ba.startActivityForResult.... B4A Question [B4X] B4XPages - StartActivityForResult camera failing - Alessandro71    Jul 29, 2020 While converting a project to B4XPages, the following code, that worked fine before, is failing on the StartActivityForResult, getting trapped by Catch clause, triggering the "camera not..., u) 'the image will be saved to this path
Try
StartActivityForResult(i)
Catch... error")
End Try
End If
Return Null
End Sub
Sub StartActivityForResult(i As Intent... B4A Question [wish] StartActivityForResult and OnActivityResult - Eduard    Feb 6, 2013 Support for StartActivityForResult and OnActivityResult
The startActivity(Intent) method is used... this, you call the startActivityForResult(Intent, int) version with a second integer parameter... Page: 1   2   3   4   5   |