Lines Matching refs:albums

373 deleteAlbums(albums: Array<Album>, callback: AsyncCallback<void>): void
375 Deletes albums. This API uses an asynchronous callback to return the result.
377 Ensure that the albums to be deleted exist. Only user albums can be deleted.
393 | albums | Array<[Album](#album)> | Yes | Albums to delete. |
437 deleteAlbums(albums: Array<Album>): Promise<void>
439 Deletes albums. This API uses a promise to return the result.
441 Ensure that the albums to be deleted exist. Only user albums can be deleted.
457 | albums | Array<[Album](#album)> | Yes | Albums to delete. |
507 Obtains hidden albums based on the specified display mode and retrieval options. This API uses an a…
565 Obtains hidden albums based on the specified display mode. This API uses an asynchronous callback t…
610 …the hidden albums displayed by album, that is, the albums with hidden files. Such albums do not in…
618 let albums: Array<photoAccessHelper.Album> = await fetchResult.getAllObjects();
619 console.info('getHiddenAlbumsViewCallback successfully, albums size: ' + albums.length);
626 for (let i = 0; i < albums.length; i++) {
628 albums[i].getAssets(fetchOption, (err, assetFetchResult) => {
641 Obtains hidden albums based on the specified display mode and retrieval options. This API uses a pr…
696 …the hidden albums displayed by album, that is, the albums with hidden files. Such albums do not in…
704 let albums: Array<photoAccessHelper.Album> = await fetchResult.getAllObjects();
705 console.info('getHiddenAlbumsViewPromise successfully, albums size: ' + albums.length);
712 for (let i = 0; i < albums.length; i++) {
714 albums[i].getAssets(fetchOption).then((assetFetchResult) => {
3268 Provides APIs to manage albums.
4522 static deleteAlbums(context: Context, albums: Array&lt;Album&gt;): Promise&lt;void&gt;
4524 Deletes albums. This API uses a promise to return the result.
4526 Ensure that the albums to be deleted exist. Only user albums can be deleted.
4539 | albums | Array&lt;[Album](#album)&gt; | Yes | Albums to delete. |
4969 Merges two portrait albums.
6265 …files by album (display all albums that contain hidden files in the system, excluding the preset h…
6351albums that are displayed by album, that is, the URI of an album with hidden files. Such albums do…