|
|
|
Android อ่าน Rss Feed จากเว็บแล้วไม่แสดงผลข้อมูลครับ |
|
|
|
|
|
|
|
ผมได้ศึกษาใช้งาน Rss Feed จากบทความนี้ครับ https://www.thaicreate.com/mobile/android-xml-parsing-xml-rss-feed.html แต่ผมต้องการจะทดลองโดยใช้ RSS ของจริงอันนี้ครับ http://rssfeeds.sanook.com/rss/feeds/sanook/news.index.xml ซึ่งตอนแรกผมแก้ไข link ที่ตัวแปร strXMLURL แต่พอรันโปรแกรมบน Emulator แล้วมัน error ที่ imageAdapter ดังนั้นผมจึง comment โค้ดที่เกี่ยวกับการแสดงภาพทั้งหมด แล้วพอรันก็ไม่มี error แต่ไม่แสดงข้อมูลจาก RSS เลยครับ มีแต่หน้าว่างๆ ไม่ทราบว่าเกิดจากอะไรครับ ทำยังไงถึงจะแสดง RSS Feed จากของจริงได้ทั้งข้อมูลและรูปภาพครับ
นี่คือโค้ด MainActivity.java ครับ
Code
public class MainActivity extends Activity {
private ListView lstView;
// private ImageAdapter imageAdapter;
ArrayList<HashMap<String, Object>> MyArrList = new ArrayList<HashMap<String, Object>>();
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// ProgressBar
requestWindowFeature(Window.FEATURE_INDETERMINATE_PROGRESS);
setContentView(R.layout.activity_main);
// ListView and imageAdapter
lstView = (ListView) findViewById(R.id.listView1);
lstView.setClipToPadding(false);
// imageAdapter = new ImageAdapter(getApplicationContext());
// lstView.setAdapter(imageAdapter);
setProgressBarIndeterminateVisibility(true);
new LoadContentFromServer().execute();
}
class LoadContentFromServer extends AsyncTask<Object, Integer, Object> {
@Override
protected Object doInBackground(Object... params) {
String strXMLURL = "http://rssfeeds.sanook.com/rss/feeds/sanook/news.index.xml";
URL url;
try {
url = new URL(strXMLURL);
DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
DocumentBuilder db = dbf.newDocumentBuilder();
Document doc = db.parse(new InputSource(url.openStream()));
doc.getDocumentElement().normalize();
NodeList nodeList = doc.getElementsByTagName("item");
MyArrList = new ArrayList<HashMap<String, Object>>();
HashMap<String, Object> map;
Log.d("nodeList.getLength",String.valueOf(nodeList.getLength()));
for(int i = 0; i < nodeList.getLength(); i++){
map = new HashMap<String, Object>();
Node item = nodeList.item(i);
NodeList nodeItem = item.getChildNodes();
Node ImageID = nodeItem.item(0); // ImageID
Node ItemID = nodeItem.item(1); // ItemID
Node ImagePath = nodeItem.item(2); // ImagePath
Node Link = nodeItem.item(3); // Link
map.put("ImageID", ImageID.getNodeValue());
map.put("ItemID", ItemID.getNodeValue());
// Thumbnail Get ImageBitmap To Object
map.put("ImagePath", ImagePath.getNodeValue());
// Bitmap newBitmap = loadBitmap(ImagePath.getNodeValue());
// map.put("ImagePathBitmap", newBitmap);
map.put("Link", Link.getNodeValue());
MyArrList.add(map);
publishProgress(i);
}
} catch (MalformedURLException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
} catch (ParserConfigurationException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
} catch (SAXException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
} catch (IOException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
return null;
}
@Override
public void onProgressUpdate(Integer... progress) {
//imageAdapter.notifyDataSetChanged();
}
@Override
protected void onPostExecute(Object result) {
setProgressBarIndeterminateVisibility(false); // When Finish
}
}
class ImageAdapter extends BaseAdapter {
private Context mContext;
public ImageAdapter(Context context) {
mContext = context;
}
public int getCount() {
return MyArrList.size();
}
public Object getItem(int position) {
return MyArrList.get(position);
}
public long getItemId(int position) {
return position;
}
public View getView(int position, View convertView, ViewGroup parent) {
// TODO Auto-generated method stub
LayoutInflater inflater = (LayoutInflater) mContext
.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
if (convertView == null) {
convertView = inflater.inflate(R.layout.activity_column, null);
}
// ColImagePath
/* ImageView imageView = (ImageView) convertView.findViewById(R.id.ColImagePath);
imageView.getLayoutParams().height = 60;
imageView.getLayoutParams().width = 60;
imageView.setPadding(5, 5, 5, 5);
imageView.setScaleType(ImageView.ScaleType.CENTER_CROP);
try
{
imageView.setImageBitmap((Bitmap)MyArrList.get(position).get("ImagePathBitmap"));
} catch (Exception e) {
// When Error
imageView.setImageResource(android.R.drawable.ic_menu_report_image);
}
// ColImageID
TextView txtImgID = (TextView) convertView.findViewById(R.id.ColImageID);
txtImgID.setPadding(10, 0, 0, 0);
txtImgID.setText("ID : " + MyArrList.get(position).get("ImageID").toString()); */
// ColItemID
TextView txtItemID = (TextView) convertView.findViewById(R.id.ColItemID);
txtItemID.setPadding(50, 0, 0, 0);
txtItemID.setText("Item : " + MyArrList.get(position).get("ItemID").toString());
return convertView;
}
}
/***** Get Image Resource from URL (Start) *****/
private static final String TAG = "Image";
private static final int IO_BUFFER_SIZE = 4 * 1024;
public static Bitmap loadBitmap(String url) {
Bitmap bitmap = null;
InputStream in = null;
BufferedOutputStream out = null;
try {
in = new BufferedInputStream(new URL(url).openStream(), IO_BUFFER_SIZE);
final ByteArrayOutputStream dataStream = new ByteArrayOutputStream();
out = new BufferedOutputStream(dataStream, IO_BUFFER_SIZE);
copy(in, out);
out.flush();
final byte[] data = dataStream.toByteArray();
BitmapFactory.Options options = new BitmapFactory.Options();
//options.inSampleSize = 1;
bitmap = BitmapFactory.decodeByteArray(data, 0, data.length,options);
} catch (IOException e) {
Log.e(TAG, "Could not load Bitmap from: " + url);
} finally {
closeStream(in);
closeStream(out);
}
return bitmap;
}
private static void closeStream(Closeable stream) {
if (stream != null) {
try {
stream.close();
} catch (IOException e) {
android.util.Log.e(TAG, "Could not close stream", e);
}
}
}
private static void copy(InputStream in, OutputStream out) throws IOException {
byte[] b = new byte[IO_BUFFER_SIZE];
int read;
while ((read = in.read(b)) != -1) {
out.write(b, 0, read);
}
}
/***** Get Image Resource from URL (End) *****/
}
Tag : Mobile, Android, Mobile
|
ประวัติการแก้ไข 2013-06-17 23:41:19
|
|
|
|
|
Date :
2013-06-17 23:39:13 |
By :
mmc01 |
View :
1253 |
Reply :
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ในตัวอย่างผมก็ทได้ปกติดีน่ะครับ หรือถ้าไม่อยากเขียน Code ให้ยุ่งยาก ลองหา Library ที่ใช้ Feed XML ครับ มีเยอะแยะครับ
|
|
|
|
|
Date :
2013-06-18 11:35:23 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|