Home
last modified time | relevance | path

Searched refs:photo (Results 1 – 25 of 95) sorted by relevance

1234

/frameworks/base/packages/Keyguard/scripts/
Dcopy_profile_icons.sh7 for photo in `adb $* shell ls /data/system/users | grep -v xml`
9 photo=${photo/$'\r'/}
10 adb shell mkdir /data/user/${user}/users/${photo}
11 adb pull /data/system/users/${photo}/photo.png
12 adb push photo.png /data/user/${user}/users/${photo}
/frameworks/opt/photoviewer/src/com/android/ex/photo/adapters/
DPhotoPagerAdapter.java18 package com.android.ex.photo.adapters;
26 import com.android.ex.photo.Intents;
27 import com.android.ex.photo.Intents.PhotoViewIntentBuilder;
28 import com.android.ex.photo.fragments.PhotoViewFragment;
29 import com.android.ex.photo.provider.PhotoContract.PhotoViewColumns;
30 import com.android.ex.photo.provider.PhotoContract.PhotoQuery;
DBaseCursorPagerAdapter.java18 package com.android.ex.photo.adapters;
28 import com.android.ex.photo.provider.PhotoContract;
/frameworks/opt/photoviewer/src/com/android/ex/photo/
DPhotoViewCallbacks.java1 package com.android.ex.photo;
8 import com.android.ex.photo.adapters.PhotoPagerAdapter;
9 import com.android.ex.photo.fragments.PhotoViewFragment;
10 import com.android.ex.photo.loaders.PhotoBitmapLoaderInterface.BitmapResult;
DPhotoViewController.java1 package com.android.ex.photo;
38 import com.android.ex.photo.ActionBarInterface.OnMenuVisibilityListener;
39 import com.android.ex.photo.PhotoViewPager.InterceptType;
40 import com.android.ex.photo.PhotoViewPager.OnInterceptTouchListener;
41 import com.android.ex.photo.adapters.PhotoPagerAdapter;
42 import com.android.ex.photo.fragments.PhotoViewFragment;
43 import com.android.ex.photo.loaders.PhotoBitmapLoader;
44 import com.android.ex.photo.loaders.PhotoBitmapLoaderInterface.BitmapResult;
45 import com.android.ex.photo.loaders.PhotoPagerLoader;
46 import com.android.ex.photo.provider.PhotoContract;
[all …]
DActionBarInterface.java1 package com.android.ex.photo;
DIntents.java18 package com.android.ex.photo;
26 import com.android.ex.photo.fragments.PhotoViewFragment;
/frameworks/opt/photoviewer/src/com/android/ex/photo/fragments/
DPhotoViewFragment.java18 package com.android.ex.photo.fragments;
40 import com.android.ex.photo.Intents;
41 import com.android.ex.photo.PhotoViewCallbacks;
42 import com.android.ex.photo.PhotoViewCallbacks.CursorChangedListener;
43 import com.android.ex.photo.PhotoViewCallbacks.OnScreenListener;
44 import com.android.ex.photo.PhotoViewController.ActivityInterface;
45 import com.android.ex.photo.R;
46 import com.android.ex.photo.adapters.PhotoPagerAdapter;
47 import com.android.ex.photo.loaders.PhotoBitmapLoaderInterface;
48 import com.android.ex.photo.loaders.PhotoBitmapLoaderInterface.BitmapResult;
[all …]
/frameworks/base/core/java/com/google/android/util/
DAbstractMessageParser.java213 Photo photo = Photo.matchURL(url, text); in tokenForUrl() local
214 if (photo != null) { in tokenForUrl()
215 return photo; in tokenForUrl()
962 private String photo; // null for albums field in AbstractMessageParser.Photo
964 public Photo(String user, String album, String photo, String text) { in Photo() argument
968 this.photo = photo; in Photo()
973 public String getPhoto() { return photo; } in getPhoto()
1012 public static String getPhotoURL(String user, String album, String photo) { in getPhotoURL() argument
1014 + photo; in getPhotoURL()
1031 private String photo; // null for user album field in AbstractMessageParser.FlickrPhoto
[all …]
/frameworks/opt/photoviewer/src/com/android/ex/photo/loaders/
DPhotoBitmapLoader.java18 package com.android.ex.photo.loaders;
27 import com.android.ex.photo.PhotoViewController;
28 import com.android.ex.photo.loaders.PhotoBitmapLoaderInterface.BitmapResult;
29 import com.android.ex.photo.util.ImageUtils;
DPhotoPagerLoader.java18 package com.android.ex.photo.loaders;
25 import com.android.ex.photo.provider.PhotoContract;
DPhotoBitmapLoaderInterface.java1 package com.android.ex.photo.loaders;
/frameworks/opt/photoviewer/sample/src/com/example/photoviewersample/
DMainActivity.java8 import com.android.ex.photo.Intents;
9 import com.android.ex.photo.Intents.PhotoViewIntentBuilder;
/frameworks/base/docs/html/training/camera/
Dphotobasics.jd86 <p>Here's a function that invokes an intent to capture a photo.</p>
111 <p>If the simple feat of taking a photo is not the culmination of your app's
115 <p>The Android Camera application encodes the photo in the return {@link android.content.Intent}
138 <p>The Android Camera application saves a full-size photo if you give it a file to
140 save the photo.</p>
184 a unique file name for a new photo using a date-time stamp:</p>
208 <p>With this method available to create a file for the photo, you can now
218 // Create the File where the photo should go
239 <p>When you create a photo through an intent, you should know where your image is located, because
241 your photo accessible is to make it accessible from the system's Media Provider.</p>
[all …]
/frameworks/opt/photoviewer/sample/
DAndroid.mk36 LOCAL_AAPT_FLAGS += --extra-packages com.android.ex.photo
60 LOCAL_AAPT_FLAGS += --extra-packages android.support.v7.appcompat:com.android.ex.photo
/frameworks/base/docs/html/training/contacts-provider/
Ddisplay-contact-badge.jd57 contact's photo thumbnail image.
181 <h3>Set the photo thumbnail</h3>
184 load the contact's thumbnail photo. To load the photo, get a URI for the photo from the
186 thumbnail photo, and read the file into a {@link android.graphics.Bitmap}.
210 * Gets the photo thumbnail column index if
228 Define a method that takes photo-related data for the contact and dimensions for the
235 * Load a contact photo thumbnail and return it as a Bitmap,
237 * @param photoData photo ID Prior to Honeycomb, the contact's _ID value.
256 // Prior to Android 3.0, constructs a photo Uri using _ID
264 * Creates a photo URI by appending the content URI of
[all …]
/frameworks/opt/photoviewer/src/com/android/ex/photo/util/
DImageUtils.java18 package com.android.ex.photo.util;
31 import com.android.ex.photo.PhotoViewController;
32 import com.android.ex.photo.loaders.PhotoBitmapLoaderInterface.BitmapResult;
DTrace.java17 package com.android.ex.photo.util;
DUtil.java1 package com.android.ex.photo.util;
/frameworks/opt/photoviewer/src/com/android/ex/photo/provider/
DPhotoContract.java18 package com.android.ex.photo.provider;
/frameworks/opt/photoviewer/src/com/android/ex/photo/views/
DProgressBarWrapper.java18 package com.android.ex.photo.views;
/frameworks/opt/photoviewer/activity/src/com/android/ex/photo/
DActionBarWrapper.java1 package com.android.ex.photo;
/frameworks/opt/photoviewer/appcompat/src/com/android/ex/photo/
DActionBarWrapper.java1 package com.android.ex.photo;
DPhotoViewActivity.java18 package com.android.ex.photo;
/frameworks/base/docs/html/training/basics/intents/
Dindex.jd37 user interface that allows the user to perform a specific task (such as view a map or take a photo).
47 component that can handle the intended action (such as "capture a photo").</p>

1234