Android图片选择器:Android-Ultra-Photo-Selector
jopen
10年前
图片选择器,可以预览图片,预览界面支持缩放。可以按照相册栏目选择。
Intent intent = new Intent(context, activity); intent.putExtra(PhotoSelectorActivity.KEY_MAX, maxImage); intent.addFlags(Intent.FLAG_ACTIVITY_NO_ANIMATION); context.startActivityForResult(intent, requestCode); @Override protected void onActivityResult(int requestCode, int resultCode, Intent data) { if (resultCode != RESULT_OK) return; if (requestCode == SELECT_IMAGE_CODE) {// selected image if (data != null && data.getExtras() != null) { @SuppressWarnings("unchecked") List<PhotoModel> photos = (List<PhotoModel>) data.getExtras().getSerializable("photos"); if (photos == null || photos.isEmpty()) { UIHelper.ToastMessage(this, R.string.no_photo_selected); } else { Intent intent = new Intent(this, YourOwnLogic.class); Bundle b = new Bundle(); b.putSerializable("album_pojo", albumPojo); b.putSerializable("photos", (Serializable) photos); intent.putExtras(b); startActivity(intent); finish(); } } } }
- Select Images from Album
- Browsing all device folders that has images
- Preview selected images, Zoom also supported