我的MainActivity.java
中有类似的内容m_dbmanager.addRow(
"http://pl.wikipedia.org/wiki/1_stycznia",
"1",
"http://assets3.parliament.uk/iv/main-large//ImageVault/Images/id_7382/scope_0/ImageVaultHandler.aspx.jpg");
第一个引用是我在另一个活动中发送到webview的链接,第二个引用(“1”)是行的名称,最后一个第三个引用是我要连续显示的图像的URL。
这是我负责与图像交互的代码部分。
public View getView(int position, View convertView, ViewGroup parent)
{
View v = convertView;
if (v == null)
{
LayoutInflater vi = (LayoutInflater)getSystemService(Context.LAYOUT_INFLATER_SERVICE);
v = vi.inflate(R.layout.row, null);
}
Order o = items.get(position);
if (o != null)
{
TextView name = (TextView) v.findViewById(R.id.row_textView);
ImageView image_view = (ImageView) v.findViewById(R.id.row_imageView);
if (name != null)
{
name.setText("Name: "+o.getOrderName());
}
if(image_view != null)
{
final String thumbail = o.getOrderImage(); //TODO, just trying
final String link = o.getOrderLink();
image_view.setOnClickListener(new View.OnClickListener()
{
public void onClick(View view)
{
Intent intent = new Intent(MainActivity.this, TemplateActivity.class);
intent.putExtra("urlString", link);
startActivity(intent);
}
});
}
}
return v;
}
}
Order class in case someone would like to see
现在 - 如何在对象'row_imageView'的位置显示addRow中指定的URL中的图像?
提前谢谢你,
答案 0 :(得分:1)
您可以使用Picasso library将图片从网址加载到ImageView。
下载jar并将其添加到项目的libs文件夹中。然后使用下面的代码将图像从url甚至任何其他资源加载到ImageView中:
Picasso.with(your_context).load(url_of_image).placeholder(R.drawable.icon)
.noFade().into(your_imageView);