How to get some images with StartActivityForResult? I do not understand how to use StartActivityForResult. Can you explain it in detail?
Eler wrote that with StartActivityForResult and:
ACTION_GET_CONTENT = "android.intent.action.GET_CONTENT"
EXTRA_ALLOW_MULTIPLE = "android.intent.extra.ALLOW_MULTIPLE"
But I do not understand how to do it...
Eler wrote that with StartActivityForResult and:
ACTION_GET_CONTENT = "android.intent.action.GET_CONTENT"
EXTRA_ALLOW_MULTIPLE = "android.intent.extra.ALLOW_MULTIPLE"
But I do not understand how to do it...
B4X:
Sub ion_Event (MethodName As String, Args() As Object) As Object
If Args(0) = -1 Then 'resultCode = RESULT_OK
Dim i As Intent = Args(1)
Log(i)
End If
Return Null
End Sub
Sub StartActivityForResult(i As Intent)
Dim jo As JavaObject = GetBA
ion = jo.CreateEvent("anywheresoftware.b4a.IOnActivityResult", "ion", Null)
jo.RunMethod("startActivityForResult", Array As Object(ion, i))
End Sub
Sub GetBA As Object
Dim jo As JavaObject
Dim cls As String = Me
cls = cls.SubString("class ".Length)
jo.InitializeStatic(cls)
Return jo.GetField("processBA")
End Sub
Sub TakePicture
Dim i As Intent
i.Initialize("android.intent.extra.ALLOW_MULTIPLE", "")
StartActivityForResult(i)
End Sub
Sub Button1_Click
TakePicture
End Sub