Hi,
I don't know if it's a bug, but my nexus 4 had just upgraded to android4.3, I have a weird problem since this upgrade:
If I press 2 times the Keycode_back then select No, the second time I've got a closing of my app, the log says:
Fatal signal 11 (SIGSEGV) at 0x002e0064 (code=1), thread 13690 (pim_gss_ics.com)
can someone else confirm this isssue?
Thks.
Patrick
I don't know if it's a bug, but my nexus 4 had just upgraded to android4.3, I have a weird problem since this upgrade:
If I press 2 times the Keycode_back then select No, the second time I've got a closing of my app, the log says:
Fatal signal 11 (SIGSEGV) at 0x002e0064 (code=1), thread 13690 (pim_gss_ics.com)
can someone else confirm this isssue?
Thks.
Patrick
B4X:
Sub Activity_KeyPress (KeyCode As Int) As Boolean
Dim Answ As Int
Dim txt As String
Select KeyCode
Case KeyCodes.KEYCODE_BACK
txt = "Please confirm to Quit"
Answ = Msgbox2(txt, "A T T E N T I O N", "Yes", "", "No", Null)
If Answ = DialogResponse.NEGATIVE OR Answ = DialogResponse.CANCEL Then
Return True
Else
Return False
End If
End Select
End Sub