多图(点击为单图,长按开启多图选择)

    1. Intent intent = new Intent(Intent.ACTION_GET_CONTENT);//意图:文件浏览器
    2. intent.setType("image/*");//限制图片限制
    3. intent.putExtra(Intent.EXTRA_ALLOW_MULTIPLE, true);//多选
    4. intent.addCategory(Intent.CATEGORY_OPENABLE);
    5. startActivityForResult(intent, 1);

    单图

    1. Intent intent = new Intent(Intent.ACTION_PICK);//意图:文件浏览器
    2. intent.setType("image/*");//限制图片限制
    3. startActivityForResult(intent, 1);