| | |
| | | public static void search(Context context, String uid, String key, |
| | | String contentType, String page, ResponseHandlerInterface handler) { |
| | | LinkedHashMap<String, String> params = new LinkedHashMap<String, String>(); |
| | | params.put("Method", "search"); |
| | | params.put("Method", "searchNew"); |
| | | params.put("Uid", uid); |
| | | params.put("Key", key); |
| | | params.put("Type", "1"); |
| | | params.put("ContentType", contentType); |
| | | params.put("Type", contentType); |
| | | params.put("Page", page); |
| | | commonPost(context, BASE_URL + "user", params, handler); |
| | | } |