java - How does WebView.loadurl work behind the scenes? -


i new android development. figured out loadurl function webview.java has following definition:

public void loadurl(string url) {         checkthread();         mprovider.loadurl(url);     } 

where mprovider instance of interface webviewprovider. function not inside interface itself.

now how calling function loads url when nothing anywhere in above mentioned places.

is general programming concept don't understand. can please explain?


Comments

Popular posts from this blog

sql - Time in datatime field -

javascript - How to split the success output from an Ajax post? -

java - sharing object across different classes -