HomeSort by relevance Sort by last modified time
    Searched refs:photoBitmap (Results 1 - 7 of 7) sorted by null

  /developers/build/prebuilts/gradle/LNotifications/Application/src/main/java/com/example/android/lnotifications/
OtherMetadataFragment.java 191 Bitmap photoBitmap = loadBitmapFromContactUri(contactUri);
192 if (photoBitmap != null) {
193 notificationBuilder.setLargeIcon(photoBitmap);
  /developers/samples/android/notification/LNotifications/Application/src/main/java/com/example/android/lnotifications/
OtherMetadataFragment.java 191 Bitmap photoBitmap = loadBitmapFromContactUri(contactUri);
192 if (photoBitmap != null) {
193 notificationBuilder.setLargeIcon(photoBitmap);
  /development/samples/browseable/LNotifications/src/com.example.android.lnotifications/
OtherMetadataFragment.java 191 Bitmap photoBitmap = loadBitmapFromContactUri(contactUri);
192 if (photoBitmap != null) {
193 notificationBuilder.setLargeIcon(photoBitmap);
  /packages/experimental/LoaderApp/src/com/android/loaderapp/
ContactHeaderWidget.java 243 Bitmap photoBitmap = null;
247 photoBitmap = BitmapFactory.decodeByteArray(photoData, 0,
251 if (photoBitmap == null) {
252 photoBitmap = loadPlaceholderPhoto(null);
254 setPhoto(photoBitmap);
  /frameworks/opt/photoviewer/src/com/android/ex/photo/views/
PhotoView.java 544 * @param photoBitmap the bitmap to bind.
546 public void bindPhoto(Bitmap photoBitmap) {
551 if (photoBitmap == drawableBitmap) {
556 changed = photoBitmap != null &&
557 (mDrawable.getIntrinsicWidth() != photoBitmap.getWidth() ||
558 mDrawable.getIntrinsicHeight() != photoBitmap.getHeight());
565 if (mDrawable == null && photoBitmap != null) {
566 mDrawable = new BitmapDrawable(getResources(), photoBitmap);
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/activities/
ConfirmAddDetailActivity.java 469 Bitmap photoBitmap = null;
473 photoBitmap = BitmapFactory.decodeByteArray(photoData, 0,
477 if (photoBitmap != null) {
478 mPhotoView.setImageBitmap(photoBitmap);
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
ConversationItemView.java 479 null /* photoBitmap */, false /* useFullMargins */, true /* mDividerEnabled */);
487 final int backgroundOverrideResId, final Bitmap photoBitmap) {
492 adapter, backgroundOverrideResId, photoBitmap, true /* useFullMargins */,
503 final int backgroundOverrideResId, final Bitmap photoBitmap,
506 mPhotoBitmap = photoBitmap;
    [all...]

Completed in 281 milliseconds