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

python - Operations inside variables -

Generic Map Parameter java -

arrays - What causes a java.lang.ArrayIndexOutOfBoundsException and how do I prevent it? -