maximum image selection limit from gallery Android

给你一囗甜甜゛ 提交于 2020-01-04 07:53:08

问题


I am trying to get image's Uri in the Gallery built-in app from inside my application.

so, I was using the Intent below, but it selected many more image.

i want to set limitation. less than 3

@Override
public void onClick(View v) {
    Intent intent = new Intent( );
    intent.setType("image/*");
    intent.setAction(Intent.ACTION_GET_CONTENT);
    intent.putExtra(Intent.EXTRA_ALLOW_MULTIPLE, true);
    startActivityForResult(Intent.createChooser(intent, "select images"), PICK_IMAGE_MULTIPLE);
}

how do i fix this.

Do you have any suggestions?


回答1:


Unfortunately, as stated by http://developer.android.com/reference/android/content/Intent.html#EXTRA_ALLOW_MULTIPLE, this is not possible.

This is a boolean extra; the default is false. If true, an implementation is allowed to present the user with a UI where they can pick multiple items that are all returned to the caller.

You'll have to manually check the returned data to see if it's more than 3 items, and if so, show a Toast and let them try again.




回答2:


As Daniel stated, there is no possibility with Intent.EXTRA_ALLOW_MULTIPLE. An alternative though, is using the MultipleImageSelect library. Not only can you select multiple images, but the extra ability to set a limit on images selected by the user.

Check out the repository or a sample.

STEPS:

Step 1: Add MultipleImageSelect library, together with jitpack.io to your build.gradle like this:

repositories {
  maven {
    url "https://jitpack.io"
  }
}

dependencies {
  implementation 'com.github.darsh2:MultipleImageSelect:v0.0.4'
}

Step 2: In project's AndroidManifest.xml, add the following under application node:

<activity
  android:name="com.darsh.multipleimageselect.activities.AlbumSelectActivity"
  android:theme="@style/MultipleImageSelectTheme">
  <intent-filter>
     <category android:name="android.intent.category.DEFAULT" />
  </intent-filter>
</activity>

Step 3: In the activity from where you want to call image selector, create Intent as follows:

mSelectImagesBtn.setOnClickListener(view -> {
        Intent intent = new Intent(ListingImages.this, AlbumSelectActivity.class);
        intent.putExtra(Constants.INTENT_EXTRA_LIMIT, 3); //set desired image limit here
        startActivityForResult(intent, Constants.REQUEST_CODE);
    });

Step 4: and override onActivityResult like this:

@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
    super.onActivityResult(requestCode, resultCode, data);
    if (requestCode == Constants.REQUEST_CODE && resultCode == RESULT_OK && data !=null) {
        ArrayList<Image> images =data.getParcelableArrayListExtra(Constants.INTENT_EXTRA_IMAGES);
        imagePathList.clear();
       StringBuffer stringBuffer = new StringBuffer();

       //loop to retrieve the paths of each image and display to TextView
       for (int i = 0; i < images.size(); i++) {
            stringBuffer.append(images.get(i).path + "\n");
       }
        textView.setText(stringBuffer.toString());
    }
}

DONE

Alternatively,

If you're using an Adapter to inflate images to display, you can instead have this:

@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
    super.onActivityResult(requestCode, resultCode, data);
    if (requestCode == Constants.REQUEST_CODE && resultCode == RESULT_OK && data != null) {
        ArrayList<Image> images = data.getParcelableArrayListExtra(Constants.INTENT_EXTRA_IMAGES);
        imagePathList.clear();
        for (int i = 0; i < images.size(); i++) {
            imagePathList.add(images.get(i).path);
        }
        imageAdapter.notifyDataSetChanged();
    }
}

Within ImageAdapter, display images to populate recyclerView, like follows:

@Override
public void onBindViewHolder(@NonNull ViewHolder holder, int position) {
    String path = imagePathList.get(position);
    Picasso.with(mContext)
            .load(new File(path))
            .placeholder(R.drawable.ic_house_placeholder)
            .into(holder.image);
}


来源:https://stackoverflow.com/questions/33604951/maximum-image-selection-limit-from-gallery-android

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!