/packages/apps/Gallery2/src/com/android/photos/ |
AlbumSetFragment.java | 17 package com.android.photos; 33 import com.android.photos.adapters.AlbumSetCursorAdapter; 34 import com.android.photos.data.AlbumSetLoader; 35 import com.android.photos.shims.LoaderCompatShim; 36 import com.android.photos.shims.MediaSetLoader;
|
PhotoSetFragment.java | 17 package com.android.photos; 32 import com.android.photos.adapters.PhotoThumbnailAdapter; 33 import com.android.photos.data.PhotoSetLoader; 34 import com.android.photos.shims.LoaderCompatShim; 35 import com.android.photos.shims.MediaItemsLoader;
|
PhotoFragment.java | 18 package com.android.photos;
|
AlbumFragment.java | 17 package com.android.photos; 35 import com.android.photos.adapters.PhotoThumbnailAdapter; 36 import com.android.photos.data.PhotoSetLoader; 37 import com.android.photos.shims.LoaderCompatShim; 38 import com.android.photos.shims.MediaItemsLoader; 39 import com.android.photos.views.HeaderGridView;
|
AlbumActivity.java | 17 package com.android.photos;
|
/frameworks/base/docs/html/training/design-navigation/ |
screen-planning.jd | 27 <p>Let's consider an example application that allows users to browse through a set of categorized news stories and photos. One possible model for such an app is shown below in the form of an ERD.</p> 40 <p>In our example application, we want to enable users to <strong>view</strong>, <strong>save</strong>, and <strong>share</strong> <em>categorized</em> <strong>stories</strong> and <strong>photos</strong>. Below is an exhaustive list of screens that covers these use cases.</p> 43 <li>Home or "launchpad" screen for accessing stories and photos</li> 47 <li>List of photos, uncategorized</li> 50 <li>List of saved photos</li> 65 <p>If we later wanted to allow users to submit news stories or upload photos, we could add additional screens to this diagram.</p> 73 <li>Buttons leading to different sections (e.g., stories, photos, saved items)</li>
|
/packages/apps/UnifiedEmail/src/com/android/mail/photomanager/ |
ContactPhotoManager.java | 38 * Asynchronously loads contact photos and maintains a cache of photos. 173 Map<String, BitmapHolder> photos = new HashMap<String, BitmapHolder>(requests.size()); local 197 // Put all entries into photos map: a mapping of email addresses to photoBytes. 204 photos.put(address, 211 photos.put(address, new BitmapHolder(null, -1, -1)); 215 return photos;
|
/frameworks/base/docs/html/sdk/api_diff/5/changes/ |
android.provider.Contacts.Photos.html | 10 android.provider.Contacts.Photos 74 Class android.provider.<A HREF="../../../../reference/android/provider/Contacts.Photos.html" target="_top"><font size="+2"><code>Contacts.Photos</code></font></A> 88 <A NAME="android.provider.Contacts.Photos.CONTENT_DIRECTORY"></A> 89 <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.Photos.html#CONTENT_DIRECTORY" target="_top"><code>CONTENT_DIRECTORY</code></font></A></nobr> </TD> 97 <A NAME="android.provider.Contacts.Photos.CONTENT_URI"></A> 98 <nobr><code>Uri</code> <A HREF="../../../../reference/android/provider/Contacts.Photos.html#CONTENT_URI" target="_top"><code>CONTENT_URI</code></font></A></nobr> </TD> 106 <A NAME="android.provider.Contacts.Photos.DEFAULT_SORT_ORDER"></A> 107 <nobr><code>String</code> <A HREF="../../../../reference/android/provider/Contacts.Photos.html#DEFAULT_SORT_ORDER" target="_top"><code>DEFAULT_SORT_ORDER</code></font></A></nobr> </TD>
|
/external/chromium_org/chrome/common/extensions/docs/examples/tutorials/getstarted/ |
popup.js | 17 * See http://www.flickr.com/services/api/flickr.photos.search.html for 24 'method=flickr.photos.search&' + 33 * Sends an XHR GET request to grab photos of lots and lots of kittens. The
|
/packages/apps/Gallery2/src/com/android/photos/adapters/ |
AlbumSetCursorAdapter.java | 17 package com.android.photos.adapters; 32 import com.android.photos.data.AlbumSetLoader; 33 import com.android.photos.shims.LoaderCompatShim;
|
/development/samples/training/TabCompat/res/values/ |
strings.xml | 20 <string name="tab_photos">Photos</string>
|
/frameworks/opt/photoviewer/sample/src/com/example/photoviewersample/ |
MainActivity.java | 26 .setPhotosUri("content://com.example.photoviewersample.SampleProvider/photos");
|
/packages/apps/Gallery2/src/com/android/photos/shims/ |
LoaderCompatShim.java | 17 package com.android.photos.shims;
|
/packages/apps/Gallery2/src_pd/com/android/photos/data/ |
PhotoProviderAuthority.java | 17 package com.android.photos.data;
|
/packages/apps/Gallery2/src/com/android/photos/data/ |
PhotoProvider.java | 16 package com.android.photos.data; 40 * accessed by this provider. Use Photos.CONTENT_URI to query all photos and 85 * Contains columns that can be accessed via Photos.CONTENT_URI. 87 public static interface Photos extends BaseColumns { 95 public static final String TABLE = "photos"; 219 protected static final String SELECT_PHOTO_ID = "SELECT " + Photos._ID + " FROM " 220 + Photos.TABLE; 221 protected static final String SELECT_PHOTO_COUNT = "SELECT COUNT(*) FROM " + Photos.TABLE; 222 protected static final String DELETE_PHOTOS = "DELETE FROM " + Photos.TABLE [all...] |
PhotoSetLoader.java | 17 package com.android.photos.data; 29 import com.android.photos.drawables.DataUriThumbnailDrawable; 30 import com.android.photos.shims.LoaderCompatShim;
|
/development/samples/HoneycombGallery/ |
_index.html | 29 Shows a ListView of photos to display in the ContentFragment. Photos can 31 list to the content area. The list of photos displayed depends on the
|
/external/chromium_org/chrome/browser/resources/feedback/js/ |
event_handler.js | 22 'efjnaogkjbogokcnohkmnjdojkikgobo', // G+ Photos 23 'ebpbnabdhheoknfklmpddcdijjkmklkp', // G+ Photos
|
/packages/apps/Calendar/res/values/ |
integers.xml | 21 <!-- The alpha level of photos of attendees that didn't respond --> 23 <!-- The default alpha level of photos of attendees -->
|
/packages/apps/ContactsCommon/src/com/android/contacts/common/ |
ContactPhotoManager.java | 72 * Asynchronously loads contact photos and maintains a cache of photos. 413 * Temporarily stops loading photos from the database. 418 * Resumes loading photos from the database. 423 * Marks all cached photos for reloading. We can continue using cache but should 424 * also make sure the photos haven't changed in the background and notify the views 439 * preload photos. 465 * Type of message sent by the UI thread to itself to indicate that some photos 471 * Type of message sent by the loader thread to indicate that some photos have 502 * An LRU cache for bitmap holders. The cache contains bytes for photos jus [all...] |
/packages/providers/ContactsProvider/tests/assets/testSynced/ |
legacy_contacts.sql | 107 CREATE TABLE photos (_id INTEGER PRIMARY KEY AUTOINCREMENT,exists_on_server INTEGER NOT NULL DEFAULT 0,person INTEGER REFERENCES people(_id), local_version TEXT,data BLOB,sync_error TEXT,_sync_account TEXT,_sync_id TEXT,_sync_time TEXT,_sync_version TEXT,_sync_local_id INTEGER,_sync_dirty INTEGER NOT NULL DEFAULT 0,_sync_mark INTEGER,UNIQUE(person) ); table 108 INSERT INTO photos VALUES(1,0,1,NULL,NULL,NULL,'non_syncable',NULL,NULL,NULL,NULL,0,1); 109 INSERT INTO photos VALUES(2,0,2,NULL,NULL,NULL,'lemmytest@gmail.com','561d08a30def1f46','1B2M2Y8AsgTpgAmY7PhCfg','1B2M2Y8AsgTpgAmY7PhCfg',NULL,0,1); 110 INSERT INTO photos VALUES(3,0,3,NULL,NULL,NULL,'lemmytest@gmail.com','506b6479896c635d','1B2M2Y8AsgTpgAmY7PhCfg','1B2M2Y8AsgTpgAmY7PhCfg',NULL,0,1); 111 INSERT INTO photos VALUES(4,0,4,NULL,NULL,NULL,'lemmytest@gmail.com','192ec38f0de81866','1B2M2Y8AsgTpgAmY7PhCfg','1B2M2Y8AsgTpgAmY7PhCfg',NULL,0,1); 112 INSERT INTO photos VALUES(5,0,5,NULL,NULL,NULL,'lemmytest@gmail.com','3e879d80b2673fc','1B2M2Y8AsgTpgAmY7PhCfg','1B2M2Y8AsgTpgAmY7PhCfg',NULL,0,1); 113 INSERT INTO photos VALUES(6,0,6,NULL,NULL,NULL,'lemmytest@gmail.com','4413217a0a1f5437','1B2M2Y8AsgTpgAmY7PhCfg','1B2M2Y8AsgTpgAmY7PhCfg',NULL,0,1); 114 INSERT INTO photos VALUES(7,0,7,NULL,NULL,NULL,'lemmytest@gmail.com',NULL,NULL,NULL,NULL,0,NULL); 115 INSERT INTO photos VALUES(8,0,8,NULL,NULL,NULL,'lemmytest@gmail.com',NULL,NULL,NULL,NULL,0,NULL); 116 INSERT INTO photos VALUES(9,0,9,NULL,NULL,NULL,'lemmytest@gmail.com',NULL,NULL,NULL,NULL,0,NULL) [all...] |
/development/samples/XmlAdapters/src/com/example/android/xmladapters/ |
ContactsListActivity.java | 27 * and their photos, using the adapter defined in res/xml.
|
PhotosListActivity.java | 36 setListAdapter(Adapters.loadCursorAdapter(this, R.xml.photos,
|
/packages/apps/Bluetooth/src/com/android/bluetooth/pbap/ |
BluetoothPbapConfig.java | 53 * If true, include photos in contact information returned to PCE
|
/packages/apps/Contacts/res/layout/ |
photo_selector_view.xml | 18 View for displaying photos that show a photo selector when clicked.
|