gallery
Contents
open
이미지/동영상을 선택할 수 있는 갤러리를 연다.
options
필드 | 설명 | 비고 |
---|---|---|
type | 0: 이미지 1: 비디오 | |
maxCount | 선택할 수 있는 최대 개수 (최대/기본 값 : 9) | type이 0(이미지)인 경우만 유효하며 1(비디오)인 경우 maxCount 값 상관없이 1개로 설정 |
successCallback
필드 | 설명 |
---|---|
result | 이미지 URI |
errorCallback
필드 | 설명 |
---|---|
없음 | 없음 |
Example
var type = 0;
var maxCnt = 3;
hone.channel.execute('gallery', 'open', [type, maxCnt],
function (result) {
alert(JSON.stringify(result));
}, function (e) {
alert(JSON.stringify(e));
}
);
var maxCnt = 3;
hone.channel.execute('gallery', 'open', [type, maxCnt],
function (result) {
alert(JSON.stringify(result));
}, function (e) {
alert(JSON.stringify(e));
}
);
Result
["/storage/emulated/0/DCIM/Camera/20161125_150120.jpeg",
"/storage/emulated/0/DCIM/Camera/20161125_150113.jpeg"
"/storage/emulated/0/DCIM/Camera/20161125_150328.jpeg"]
"/storage/emulated/0/DCIM/Camera/20161125_150113.jpeg"
"/storage/emulated/0/DCIM/Camera/20161125_150328.jpeg"]