Gallery控件的基本使用

一、Gallery是图片浏览控件

二、Gallery基本使用:

         1、在main.xml文件中添加 ImageView,Gallery控件

         2、要想把数据加载到Gallery,需要使用适配器

               适配器的核心代码如下:

             

         class GallaryAdapter extends BaseAdapter {

              public int getCount() {
               return imagearr.length;
              }

              public Object getItem(int arg0) {
               return imagearr[arg0];
                 }

              public long getItemId(int position) {
               return position;
              }

              public View getView(int position, View convertView, ViewGroup parent) {

               ImageView iv = new ImageView(Zt_05_GallaryActivity.this);
               iv.setImageResource(imagearr[position]);
               iv.setAdjustViewBounds(true);
               iv.setLayoutParams(new Gallery.LayoutParams(200, 200));

               return iv;
              }

          }

          3、若想要实现Gallery图片选中,显示详细图片,触发的事件setOnItemSelectedListener,核心代码如下:

       

        ga.setOnItemSelectedListener(new OnItemSelectedListener() {
            public void onItemSelected(AdapterView<?> arg0, View arg1,
                    int arg2, long arg3) {
                ivshow.setImageResource(imagearr[arg2]);
            }

            public void onNothingSelected(AdapterView<?> arg0) {

            }

        });

三、这只是Gallery控件的基本使用,我上传了源代码,供大家参考。欢迎大家一起讨论。

        效果:



        完整源码:http://115.com/file/c2t6pzui#zt-05-Gallary.rar



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值