Home
last modified time | relevance | path

Searched refs:albumPath (Results 1 – 8 of 8) sorted by relevance

/packages/apps/Gallery2/src/com/android/gallery3d/onetimeinitializer/
DGalleryWidgetMigrator.java91 Path path = Path.fromString(entry.albumPath); in migrateGalleryWidgetsInternal()
143 String newAlbumPath = Path.fromString(entry.albumPath) in updatePath()
147 Log.d(TAG, "migrate from " + entry.albumPath + " to " + newAlbumPath); in updatePath()
148 entry.albumPath = newAlbumPath; in updatePath()
162 String newAlbumPath = Path.fromString(entry.albumPath) in updateEntryUsingRelativePath()
166 entry.albumPath = newAlbumPath; in updateEntryUsingRelativePath()
/packages/apps/Gallery2/src/com/android/gallery3d/gadget/
DWidgetDatabaseHelper.java73 public String albumPath; field in WidgetDatabaseHelper.Entry
85 albumPath = cursor.getString(INDEX_ALBUM_PATH); in Entry()
156 values.put(FIELD_ALBUM_PATH, entry.albumPath); in restoreData()
218 public boolean setWidget(int id, int type, String albumPath, String relativePath) { in setWidget() argument
223 values.put(FIELD_ALBUM_PATH, Utils.ensureNotNull(albumPath)); in setWidget()
287 values.put(FIELD_ALBUM_PATH, entry.albumPath); in updateEntry()
DWidgetService.java46 String albumPath = intent.getStringExtra(EXTRA_ALBUM_PATH); in onGetViewFactory() local
49 id, type, albumPath); in onGetViewFactory()
62 public PhotoRVFactory(GalleryApp app, int id, int type, String albumPath) { in PhotoRVFactory() argument
66 mAlbumPath = albumPath; in PhotoRVFactory()
DWidgetConfigure.java164 String albumPath = data.getStringExtra(AlbumPicker.KEY_ALBUM_PATH); in setChoosenAlbum() local
170 Path path = Path.fromString(albumPath); in setChoosenAlbum()
177 Log.i(TAG, "Setting widget, album path: " + albumPath in setChoosenAlbum()
181 WidgetDatabaseHelper.TYPE_ALBUM, albumPath, relativePath); in setChoosenAlbum()
DMediaSetSource.java45 public MediaSetSource(DataManager manager, String albumPath) { in MediaSetSource() argument
46 MediaSet mediaSet = (MediaSet) manager.getMediaObject(albumPath); in MediaSetSource()
54 mAlbumPath = Path.fromString(albumPath); in MediaSetSource()
DPhotoAppWidgetProvider.java87 intent.putExtra(WidgetService.EXTRA_ALBUM_PATH, entry.albumPath); in buildStackWidget()
/packages/apps/Gallery2/src/com/android/gallery3d/app/
DGalleryActivity.java206 Path albumPath = dm.getDefaultSetOf(itemPath); in startViewAction() local
213 boolean singleItemOnly = (albumPath == null) in startViewAction()
216 data.putString(PhotoPage.KEY_MEDIA_SET_PATH, albumPath.toString()); in startViewAction()
DPhotoPage.java1241 Path albumPath = mApplication.getDataManager().getDefaultSetOf(path); in setCurrentPhotoByIntent() local
1242 if (albumPath == null) { in setCurrentPhotoByIntent()
1245 if (!albumPath.equalsIgnoreCase(mOriginalSetPathString)) { in setCurrentPhotoByIntent()
1249 data.putString(KEY_MEDIA_SET_PATH, albumPath.toString()); in setCurrentPhotoByIntent()