diff options
| author | 2013-08-16 16:43:22 +0100 | |
|---|---|---|
| committer | 2013-08-16 16:43:22 +0100 | |
| commit | 851004ade068d4ceb3b808d2f0f55c8ef57a324a (patch) | |
| tree | 0452341f44f3d77b0102c7f2f0a20caccd10b498 | |
| parent | 0a94b9ce277ef2ec79902e3c576a50ab438dca97 (diff) | |
Update WebView.postUrl documentation.
Clarify format of the 'data' parameter.
Bug: 10188709
Change-Id: Ib0f7553153916ed7b5cc611da5eb481979bf3f93
| -rw-r--r-- | core/java/android/webkit/WebView.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/java/android/webkit/WebView.java b/core/java/android/webkit/WebView.java index 0224fbe6209a..03bde70299c6 100644 --- a/core/java/android/webkit/WebView.java +++ b/core/java/android/webkit/WebView.java @@ -780,7 +780,8 @@ public class WebView extends AbsoluteLayout * {@link #loadUrl(String)} instead. * * @param url the URL of the resource to load - * @param postData the data will be passed to "POST" request + * @param postData the data will be passed to "POST" request, which must be + * be "application/x-www-form-urlencoded" encoded. */ public void postUrl(String url, byte[] postData) { checkThread(); |