i like to have additionally StartActivityForResult build in with event name for result
its cleaner code without extra subs and javaobject lib in any project.
or better if the result comes here in Activity_Resume.
so we can use extern apps like this as barcode reader or something else
(it is similar as the extern lib ABZxing)
its cleaner code without extra subs and javaobject lib in any project.
or better if the result comes here in Activity_Resume.
so we can use extern apps like this as barcode reader or something else
B4X:
Dim Intent1 As Intent
Intent1.Initialize("com.google.zxing.client.android.SCAN","")
Intent1.PutExtra("SCAN_MODE","")
If Intent1.IsInitialized Then
StartActivityForResult(Intent1)
End If