How to disable back button pressed for webview in android?

前端 未结 6 788
时光说笑
时光说笑 2020-12-19 15:38

How to disable back button pressed for webview in android ?

@Override
public boolean onKeyDown(int keyCode, KeyEvent event)
{
     if (wv1 != null &&         


        
6条回答
  •  猫巷女王i
    2020-12-19 16:32

    You have add below code in Activity for disable activity back pressed

    @Override
    public void onBackPressed() {
    
    }
    

提交回复
热议问题