update comment on WebView loadData

Change-Id: I20fbfabde7eafb8017036a7360ed83fa457cc42c
http://2400117
This commit is contained in:
Cary Clark
2010-03-15 16:01:49 -04:00
parent 0e08f2d50a
commit fc2ece4ab6

View File

@@ -1464,7 +1464,9 @@ public class WebView extends AbsoluteLayout
* Load the given data into the WebView. This will load the data into
* WebView using the data: scheme. Content loaded through this mechanism
* does not have the ability to load content from the network.
* @param data A String of data in the given encoding.
* @param data A String of data in the given encoding. The date must
* be URI-escaped -- '#', '%', '\', '?' should be replaced by %23, %25,
* %27, %3f respectively.
* @param mimeType The MIMEType of the data. i.e. text/html, image/jpeg
* @param encoding The encoding of the data. i.e. utf-8, base64
*/