Difference between revisions of "Web Programming Within Android Applications"
Line 1: | Line 1: | ||
− | == Week | + | == Week 5 (Feb. 8-14) == |
Does Android support the rendering of HTML/CSS/Javascript natively? | Does Android support the rendering of HTML/CSS/Javascript natively? | ||
Line 8: | Line 8: | ||
http://developer.android.com/reference/android/webkit/WebView.html (Kristoffer) | http://developer.android.com/reference/android/webkit/WebView.html (Kristoffer) | ||
− | == Week | + | == Week 6 (Feb. 15-21) == |
+ | |||
+ | == Week 7 (Feb. 22-28) == |
Revision as of 09:17, 13 February 2015
Week 5 (Feb. 8-14)
Does Android support the rendering of HTML/CSS/Javascript natively?
The answer is, yes. WebView is a native way for Android applications to render webpages within Activities. This is done through the WebKit rendering engine built into Android that displays HTML and CSS as if the designated Activity was a web browser. As is mentioned in the article linked below, 'a WebView provides no browser-like widgets, does not enable JavaScript and web page errors are ignored'.
More about WebView can be found here:
http://developer.android.com/reference/android/webkit/WebView.html (Kristoffer)