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 を使用しています。Android OS: ジェリービーン
ここに私のlogcatエラーがあります: http://pastebin.com/9wyVpNHV