Home | History | Annotate | Download | only in browser

Lines Matching refs:touchIcon

60     static Bitmap createIcon(Context context, Bitmap touchIcon, Bitmap favicon,
66 return createIcon(context, touchIcon, favicon, type, iconDimension, iconDensity);
81 private static Bitmap createIcon(Context context, Bitmap touchIcon,
88 if (touchIcon != null) {
89 drawTouchIconToCanvas(touchIcon, canvas, iconBounds);
115 Bitmap touchIcon, Bitmap favicon) {
120 i.putExtra(Intent.EXTRA_SHORTCUT_ICON, createIcon(context, touchIcon, favicon,
159 private static void drawTouchIconToCanvas(Bitmap touchIcon, Canvas canvas, Rect iconBounds) {
160 Rect src = new Rect(0, 0, touchIcon.getWidth(), touchIcon.getHeight());
165 canvas.drawBitmap(touchIcon, src, iconBounds, paint);