Choose multiple image from android gallery

$scope.allImages = [];
function UploadPicture(imageURI) {
$scope.allImages.splice($scope.allImages.length, 0, imageURI);
$scope.$apply();
}$scope.FindPicture = function () { navigator.camera.getPicture(UploadPicture, function(imageData) {
alert(‘get picture failed’);
},{
quality: 50,
destinationType: navigator.camera.DestinationType.FILE_URI,
sourceType: navigator.camera.PictureSourceType.PHOTOLIBRARY
}
);
}and in page index.htm:
a class=“item item-list-detail”>


it doesn’t work I don’t know what is the problem there. it work if I choose an image from the internet but if i choose an image from my gallery he give me the path right:"content://media/external/images/media"
can any one help me please. it is very urgent for me.