我正在尝试为 android 构建一个 RSS 阅读器。这是我的代码。我收到错误消息说无法在线程上执行网络操作。
URL url = null;
try {
url = new URL((data.get(position).getThumbnail()));
} catch (MalformedURLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
InputStream content = null;
try {
content = (InputStream)url.getContent();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
Drawable d = Drawable.createFromStream(content , "src");
Bitmap mIcon1 = null;
try {
mIcon1 =
BitmapFactory.decodeStream(url.openConnection().getInputStream());
} catch (IOException e) {
e.printStackTrace();
}
详细信息:API 是 16 我正在使用 XP pro ,SP3。安卓操作系统:果冻豆
这是我的 logcat 错误: http://pastebin.com/9wyVpNHV