I would like to dynamically add some images from this page to the rows from my table.
This is my code so far:
TableLayout tableView = (TableLayout) findViewById(R.id.tableView);
TableRow row = new TableRow(this);
ImageView im;
im = new ImageView(this);
im.setImageResource(R.drawable.rss);
row.addView(im, new TableRow.LayoutParams(50, 50));
tableView.addView(row, new TableLayout.LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT));
Now... how can I make, for example, the image with the man with sunglasses, to be part of my table row?
PS: I would like my application to fetch each day the images, without me changing the code. That website updates one day to another, changing the news and the images.