Android

WebViewClient error code

aucd29 2013. 10. 8. 14:40
http://developer.android.com/reference/android/webkit/WebViewClient.html


Constants
int    ERROR_AUTHENTICATION    User authentication failed on server
int    ERROR_BAD_URL    Malformed URL
int    ERROR_CONNECT    Failed to connect to the server
int    ERROR_FAILED_SSL_HANDSHAKE    Failed to perform SSL handshake
int    ERROR_FILE    Generic file error
int    ERROR_FILE_NOT_FOUND    File not found
int    ERROR_HOST_LOOKUP    Server or proxy hostname lookup failed
int    ERROR_IO    Failed to read or write to the server
int    ERROR_PROXY_AUTHENTICATION    User authentication failed on proxy
int    ERROR_REDIRECT_LOOP    Too many redirects
int    ERROR_TIMEOUT    Connection timed out
int    ERROR_TOO_MANY_REQUESTS    Too many requests during this load
int    ERROR_UNKNOWN    Generic error
int    ERROR_UNSUPPORTED_AUTH_SCHEME    Unsupported authentication scheme (not basic or digest)
int    ERROR_UNSUPPORTED_SCHEME    Unsupported URI scheme



onPageFinished

Notify the host application that a page has finished loading When onPageFinished() is called, the rendering picture may not be updated yet. To get the notification for the new Picture, use onNewPicture(WebView, Picture).