투케이2K

677. (Android/Java) 안드로이드 웹뷰 (webview) copyBackForwardList 사용해 url 주소 이동 히스토리 history 확인 본문

Android

677. (Android/Java) 안드로이드 웹뷰 (webview) copyBackForwardList 사용해 url 주소 이동 히스토리 history 확인

투케이2K 2023. 11. 3. 22:10

[개발 환경 설정]

개발 툴 : AndroidStudio

 

[소스 코드]

                        String historyUrl = "\n"+"\n";
                        if (main_webview.copyBackForwardList() != null && main_webview.copyBackForwardList().getSize() > 0){
                            try {
                                for (int i=0; i<main_webview.copyBackForwardList().getSize(); i++){
                                    historyUrl += String.valueOf(main_webview.copyBackForwardList().getItemAtIndex(i).getUrl()) + "\n" + "\n";
                                }
                            }
                            catch (Exception e){}
                        }

                        S_Log._F_(A_Webview.this, S_FinalMsg.LOG_Status_Check_Res, new String[]{
                                "URL :: " + String.valueOf(main_webview.getUrl()),
                                "STATUS :: " + "웹뷰 호출 완료 상태",
                                "HISTORY LIST :: " + String.valueOf(historyUrl)
                        });
 

[결과 출력]

 

 
 
반응형
Comments