我已经能够使用以下代码从我的wordpress网站获取json内容
private void parseResult(String result) {
try {
JSONObject response = new JSONObject(result);
JSONArray posts = response.optJSONArray("posts");
feedsList = new ArrayList<>();
for (int i = 0; i < posts.length(); i++) {
JSONObject post = posts.optJSONObject(i);
FeedItem item = new FeedItem();
item.setTitle(post.optString("title"));
item.setContent(post.optString("content"));
item.setExcerpt(post.optString("excerpt"));
item.setdate(post.optString("date"));
item.setPostUrl(post.getString("url"));
JSONArray attachments = post.getJSONArray("attachments");
if (null != attachments && attachments.length() > 0) {
JSONObject attachment = attachments.getJSONObject(0);
if (attachment != null)
item.setAttachmentUrl(attachment.getString("url"));
}
JSONObject author = post.getJSONObject("author");
item.setAuthorname(author.optString("name"));
在我的应用程序中,内容显示在文本视图中,但在网站中,一些帖子内容包含内容和链接中的图像,但由于内容以文本视图显示,因此无法单击。所以我要知道的是如何在webview中获取数据,以便显示图像和链接。感谢。