gridview在最后默认一个添加更多, 将String的路径转为bitmap

项目遇到,gridview有一个item是点击后选择的,但又新的item加如后这个就不断向后移动

在adapter中将返回的项数加一

if(position<mSelectPath.size()){
    //添加list中的数据
}else {
    image.setImageDrawable(mContext.getResources().getDrawable(R.mipmap.biaoqing));
}
  class MyGridAdapter extends BaseAdapter{
        private Context mContext;
        public MyGridAdapter(Context context) {
            this.mContext=context;
        }
        public void setData(){
            notifyDataSetChanged();
        }

        @Override
        public int getCount() {
            return mSelectPath.size()+1;
        }

        @Override
        public Object getItem(int position) {
                return mSelectPath.get(position);

        }

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

        @Override
        public View getView(int position, View convertView, ViewGroup parent) {
            ImageView image;
            if (convertView == null) {
                convertView = View.inflate(mContext, R.layout.gridview_view, null);
                image = (ImageView) convertView.findViewById(R.id.image_gridview);
            } else {
                image = (ImageView) convertView.findViewById(R.id.image_gridview);
            }
            if(position<mSelectPath.size()){
                String path = mSelectPath.get(position);
                Bitmap bitmap = convertToBitmap(path, 500, 400);
                image.setImageBitmap(bitmap);
            }else {
                image.setImageDrawable(mContext.getResources().getDrawable(R.mipmap.biaoqing));
            }
            return convertView;
        }

点击事件:else的时候就是点击的默认的呢一项

       mGridView.setOnItemLongClickListener(new AdapterView.OnItemLongClickListener() {
            @Override
            public boolean onItemLongClick(AdapterView<?> parent, View view, int position, long id) {

                if (position < parent.getCount() - 1) {
                    String path = (String) parent.getAdapter().getItem(position);
                    for (int i = 0; i < mSelectPath.size(); i++) {
                        if (path.equals(mSelectPath.get(i))) {
                            mSelectPath.remove(mSelectPath.get(i));
                            myGridAdapter.setData();
                            break;
                        }
                    }
                } else {
                    Intent intent = new Intent(MyTest.this, MultiImageSelectorActivity.class);
                    // 是否显示拍摄图片
                    intent.putExtra(MultiImageSelectorActivity.EXTRA_SHOW_CAMERA, false);
                    // 最大可选择图片数量
                    intent.putExtra(MultiImageSelectorActivity.EXTRA_SELECT_COUNT, 9);
                    // 选择模式
                    intent.putExtra(MultiImageSelectorActivity.EXTRA_SELECT_MODE, 1);
                    // 默认选择
                    if (mSelectPath != null && mSelectPath.size() > 0) {
                        intent.putExtra(MultiImageSelectorActivity.EXTRA_DEFAULT_SELECTED_LIST, mSelectPath);
                    }
                    startActivityForResult(intent, REQUEST_IMAGE);
                }
                return true;
            }
        });
String路径转成Bitmap
        //String转换成bitmap
        public Bitmap convertToBitmap(String path, int w, int h) {
            BitmapFactory.Options opts = new BitmapFactory.Options();
            // 设置为ture只获取图片大小
            opts.inJustDecodeBounds = true;
            opts.inPreferredConfig = Bitmap.Config.ARGB_8888;
            // 返回为空
            BitmapFactory.decodeFile(path, opts);
            int width = opts.outWidth;
            int height = opts.outHeight;
            float scaleWidth = 0.f, scaleHeight = 0.f;
            if (width > w || height > h) {
                // 缩放
                scaleWidth = ((float) width) / w;
                scaleHeight = ((float) height) / h;
            }
            opts.inJustDecodeBounds = false;
            float scale = Math.max(scaleWidth, scaleHeight);
            opts.inSampleSize = (int)scale;
            WeakReference<Bitmap> weak = new WeakReference<Bitmap>(BitmapFactory.decodeFile(path, opts));
            return Bitmap.createScaledBitmap(weak.get(), w, h, true);
        }

版权声明:本文为博主原创文章,未经博主允许不得转载。

时间: 2024-11-08 00:56:19

gridview在最后默认一个添加更多, 将String的路径转为bitmap的相关文章

Linux shell中getopts命令学习--实现一个添加yum源的脚本

getopts是bash shell的内建命令,作用是在shell脚本中解析命令行传递.传递给函数或传递给另一个调用的shell脚本的位置参数(选项或参数,后面会讲解,getopts只支持短选项,若要解析长选项请参考getopt). getopts命令语法: getopts optstring name [arg] 相关的术语: 选项(option):GNU风格的命令选项,如:-x,-y等减号加上单个字母的为短选项:--help为长选项: 选项的参数:某些选项之后必须尾随参数,如:-f xxx.

rhce认证考试-创建一个添加用户脚本

创建一个添加用户的脚本 在server0上创建一个名为/root/batchusers,此脚本能够实现为系统system1创建本地用户,并且这些用户的用户名来自一个包含用户名列表的文件,同时满足下列要求: 1.此脚本要求提供一个参数,此参数就是包含用户名列表的文件 2.如果没有提供参数,此脚本应该给出下面的提示信息Usage: /root/batusers userfile ,并且退出返回相应的值 3.如果提供一个不存在的文件名,此脚本应该给出下面的提示信息Input file not foun

ASP.NET MVC + 百度富文本编辑器 + EasyUi + EntityFrameWork 制作一个添加新闻功能

本文将交大伙怎么集成ASP.NET MVC + 百度富文本编辑器 + EasyUi + EntityFrameWork来制作一个新闻系统 先上截图: 添加页面如下: 下面来看代码部分 列表页如下: 1 @{ 2 Layout = null; 3 } 4 5 <!DOCTYPE html> 6 7 <html> 8 <head> 9 <meta name="viewport" content="width=device-width&qu

activityGroup怎样让子activity中的gridView第一项默认获取焦点?

如图所示,activityGroup管理四个子activity,每次次进入后,都是左边的TAG栏获取焦点,怎样才能让焦点默认移到右边子activity中GridView容器中的第一个元素? 注:mGridView.setSelection(0);    mGridView.requestFocus();这些方法均无效. 子activity中mGridView.setSelection(0); 不起作用不原因是调用的时机不对.复写一下函数即可解决问题: @Override public void

添加Ubuntu的库文件路径

添加Ubuntu的库文件路径 http://blog.csdn.net/r91987/article/details/6879062 关于ubuntu添加共享库路径: 1. 将绝对路径写入 /etc/ld.so.conf 2. ldconfig OK! ***************************************************************************************************************************

1——自我实现一个简洁版的String类

在C++中有C没有的string字符串类型,string类型的数据其实是一个指向字符串首地址的指针变量,因此在string类的默认成员函数拷贝构造和赋值运算符的重载就会涉及到深浅拷贝的问题,一不小心要么就是内存泄露要么就是多次释放同一块空间导致程序崩溃,下面就来模拟实现一个简洁版的String类: 既然是指向一个字符串的指针,因此类的成员变量就需要有一个char*类型的指针: #include <iostream> #include <string.h> using namespa

【c语言】编写一个函数reverse_string(char * string)(递归实现) 实现:将参数字符串中的字符反向排列。

/*编写一个函数reverse_string(char * string)(递归实现) 实现:将参数字符串中的字符反向排列. 要求:不能使用C函数库中的字符串操作函数.*/ #include <stdio.h> #include <assert.h> void reverse_string(char const * string) { assert( string != NULL ); if( *string != '\0' ) { string++; reverse_string

编写一个函数reverse_string(char * string)(递归实现)

编写一个函数reverse_string(char * string)(递归实现) 实现:将参数字符串中的字符反向排列. 要求:不能使用C函数库中的字符串操作函数. #include<stdio.h> #include<assert.h> #include<stdlib.h> int my_strlen(const char*str) { assert(str); int count = 0; while (*str) { count++; str++; } retur

拷贝一个目录或者文件到指定路径下

/** * 拷贝一个目录或者文件到指定路径下 * * @param source * @param target */ public static void copy(File source, File target) { File tarpath = new File(target, source.getName()); if (source.isDirectory()) { tarpath.mkdir(); File[] dir = source.listFiles(); for (int