hi
i m using Activity.Finish
to close my activity named perfil
but this dont close total
when i open again this activity show me
why dont close for total?
it give me error because load all layout again and again and again and it crash my app
how can i make to realy close this activity
for when you open again show me
isFirst = true
i m using Activity.Finish
to close my activity named perfil
but this dont close total
when i open again this activity show me
** Activity (perfil) Create, isFirst = false **
why dont close for total?
it give me error because load all layout again and again and again and it crash my app
how can i make to realy close this activity
for when you open again show me
isFirst = true
B4X:
Sub Activity_Pause (UserClosed As Boolean)
If UserClosed = True Then
If camEx.IsInitialized = True Then
camEx.Release
End If
Activity.Finish
End If
End Sub