Se a qualcuno interessa come gestire il tasto back, vi posto un esempio che sto usando.
Sub Activity_KeyPress (KeyCode As Int) As Boolean
If KeyCode = KeyCodes.KEYCODE_BACK Then 'intercettazione del tasto
If Panelinfo.Visible = True Then
Panelinfo.Visible=False
Return True
End If
If Panellegi.Visible = True Then
Panellegi.Visible=False
Return True
End If
Else
Activity.finish
End If
End Sub
Praticamente quando tocco il tasto back e a secondo di che panel è visibile, rendo invisibile il panel, altrimenti chiudo l'app.
Sub Activity_KeyPress (KeyCode As Int) As Boolean
If KeyCode = KeyCodes.KEYCODE_BACK Then 'intercettazione del tasto
If Panelinfo.Visible = True Then
Panelinfo.Visible=False
Return True
End If
If Panellegi.Visible = True Then
Panellegi.Visible=False
Return True
End If
Else
Activity.finish
End If
End Sub
Praticamente quando tocco il tasto back e a secondo di che panel è visibile, rendo invisibile il panel, altrimenti chiudo l'app.
Last edited: