Italian Keycode_back

Dey

Active Member
Licensed User
Longtime User
salve a tutti, ho appena iniziato questa avventura :) direi molto interessante
ho cercato nel forum, non riesco a tenere l'applicazione in primo piano qando viene premuto il tasto back
mi date una mano?
grazie.
 

fifiddu70

Well-Known Member
Licensed User
Longtime User
questo è quello che credo ti serva, se non ti serve il msgbox lo togli e usi solo ciò che hai bisogno
B4X:
Sub Activity_KeyPress (KeyCode As Int)  As Boolean
   If KeyCode = KeyCodes.KEYCODE_BACK Then   
   answ = Msgbox2("Sei sicuro di voler uscire dal programma?","ATTENZIONE !!","SI","","NO",Null)
   If answ = DialogResponse.POSITIVE Then
   
   Return False
   End If
   End If
   Return True
   
End Sub
 
Top