Dopo vari tentativi, e grazie al supporto di
@LucaMs , sono arrivato a questa conclusione:
nella MAIN la sub Activity_KeyPress và modificata in questo modo:
Sub Activity_KeyPress (KeyCode As Int) As Boolean
B4XPages.GetManager.RaiseEvent(B4XPages.GetManager.GetTopPage, "B4XPage_KeyPress", Array(KeyCode))
Return True
End Sub
e nelle varie Pages servirà
Private Sub B4XPage_KeyPress (KeyCode As Int)
If KeyCode = 4 Then '4 è il Keycode del tasto Back
'Quello che deve accadere alla pressione del tasto Back
End If
End Sub