I have this piece of code
In one device, Galaxy S4, after pressing back from the gallery to view the picture, program remains at the same point it was left after calling the function.
In other device, an Ematic tablet, after pressing back and close the gallery, the program behave different. It launch Activity Create, with Firsttime = false. That creates a problem for me right now.
Could this be prevented?
B4X:
Sub ViewPicture(lImagen As String)
Dim it As Intent
it.Initialize(it.ACTION_VIEW, "file://" & lImagen)
it.SetType("image/*")
StartActivity(it)
End Sub
In one device, Galaxy S4, after pressing back from the gallery to view the picture, program remains at the same point it was left after calling the function.
In other device, an Ematic tablet, after pressing back and close the gallery, the program behave different. It launch Activity Create, with Firsttime = false. That creates a problem for me right now.
Could this be prevented?