Apps How add webkit to my programm in android studio?

poss2

Lurker
I use android studio ide for development an applications for android devices.
import android.webkit.WebView;
import android.webkit.WebViewClient;
...........
...........

final webView browser = (webView) findViewById(R.id.webView);

i get next error:
Error:(24, 15) error: cannot find symbol class webView

How i can fix this error?
 
Top