Home | History | Annotate | Download | only in launcher3

Lines Matching defs:bitmap

22 import android.graphics.Bitmap;
172 * @param bmp The bitmap that represents the view being dragged
178 * @param dragRegion Coordinates within the bitmap b for the position of item being dragged.
181 public void startDrag(View v, Bitmap bmp, DragSource source, Object dragInfo,
201 * @param b The bitmap to display as the drag image. It will be re-scaled to the
203 * @param dragLayerX The x position in the DragLayer of the left-top of the bitmap.
204 * @param dragLayerY The y position in the DragLayer of the left-top of the bitmap.
209 * @param dragRegion Coordinates within the bitmap b for the position of item being dragged.
213 public DragView startDrag(Bitmap b, int dragLayerX, int dragLayerY,
274 * Draw the view into a bitmap.
276 Bitmap getViewBitmap(View v) {
294 Bitmap cacheBitmap = v.getDrawingCache();
300 Bitmap bitmap = Bitmap.createBitmap(cacheBitmap);
308 return bitmap;