我是Android域名的新手..
我正在使用小应用程序..
我需要的是什么?
我在数组列表中有视频网址和图片网址,它从数据库中作为json对象进行检索并存储在单独的数组中。我希望这个数组列表的图像应该在listview中显示文本。
如何实现这个?请帮帮我..
我已经通过谷歌但仍然没有明确的例子..请任何人帮助我..
提前多多感谢...
public class act extends Activity { /** Called when the activity is first created. */ static String uri1="http://i3.ytimg.com/vi/bQaWsVQSLdY/default.jpg"; static String uri2="http://i4.ytimg.com/vi/cJQCniWQdno/mqdefault.jpg"; static String uri3="http://i1.ytimg.com/vi/D8dA4pE5hEY/mqdefault.jpg"; public static String[] urls={uri1,uri2,uri3}; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); GridView grd=(GridView)findViewById(R.id.gridView1); grd.setAdapter(new ImageAdapter(this)); grd.setOnItemClickListener(new OnItemClickListener() { public void onItemClick(AdapterView<?> parent,View v,int pos,long id) { Toast.makeText(getBaseContext(),"pic"+(pos+1)+"select ",Toast.LENGTH_SHORT).show(); } }); } public class ImageAdapter extends BaseAdapter { private Context context; private int itemBackground; ImageAdapter(Context c) { context=c; TypedArray a=obtainStyledAttributes(R.styleable.Gallery1); itemBackground=a.getResourceId(R.styleable.Gallery1_android_galleryItemBackground,0); a.recycle(); } public int getCount() { return urls.length; } public Object getItem(int pos) { return pos; } public long getItemId(int pos) { return pos; } public View getView(int pos,View cv,ViewGroup vg) { ImageView imageview=new ImageView(context); imageview.setImageResource(urls[pos]); imageview.setScaleType(ImageView.ScaleType.FIT_XY); imageview.setLayoutParams(new Gallery.LayoutParams(150,120)); imageview.setBackgroundResource(itemBackground); return imageview; } }
}
我尝试这样......我无法获得图像......
答案 0 :(得分:1)
你不能像你想要的那样直接设置它,你首先需要下载图像,
存储位图,然后才将图像应用于ImageView
。
检查这个问题:
How to set image button resource from web url in Android?
这个解决方案也很好:
答案 1 :(得分:0)
如果需要在列表行中显示imageview和textview,那么尝试使用通用加载器的概念。 链接: