Here I have the code to select image from gallery, but how can I select multiple images from gallery?
Ti.Media.openPhotoGallery({
// allowEditing:true,
mediaTypes : [Ti.Media.MEDIA_TYPE_PHOTO],
success : function(e) {
alert(e);
ImageView.image = e.media;
//alert('height:'+e.media.height+'width:'+e.media.height);
lblWidth.text = 'W :'+e.media.width;
lblHeight.text ='H :' +e.media.height;
},
cancel : function() {
},
error : function(err) {
}
});