Android - Disable Device Back button

前端 未结 1 587
粉色の甜心
粉色の甜心 2020-12-16 05:15

I am working on android application using PhoneGap. I need to handle Device back button functionality by using the below code:

 import com.phonegap.DroidGap;         


        
相关标签:
1条回答
  • 2020-12-16 05:18

    Why do you need to do this at the Java level? You can achieve this with Javascript using Phonegap's Event API

    document.addEventListener("backbutton", onBackKeyDown, false);
    function onBackKeyDown(e) {
      e.preventDefault();
    }
    
    0 讨论(0)
提交回复
热议问题