if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {

mWebView.setWebContentsDebuggingEnabled(true);

}

크롬에서 원격으로 웹페이지 디버깅하기 위해서 새로 생긴 기능을 활성화 하는데, 오류가 발생합니다.

The static method setWebContentsDebuggingEnabled(boolean) from the type WebView should be accessed in a static way

해결방법 알려주세요.

1 답변

0 투표

setWebContentsDebuggingEnabled 메소드는 static 입니다.

아래와 같이 사용하시면 됩니다.

if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {

    WebView.setWebContentsDebuggingEnabled(true);

}

 

 

add
...