Home | History | Annotate | Download | only in launcher2

Lines Matching defs:bitmap

21 import android.graphics.Bitmap;
169 * @param bmp The bitmap that represents the view being dragged
174 * @param dragRegion Coordinates within the bitmap b for the position of item being dragged.
177 public void startDrag(View v, Bitmap bmp, DragSource source, Object dragInfo, int dragAction,
199 * @param b The bitmap to display as the drag image. It will be re-scaled to the
201 * @param dragLayerX The x position in the DragLayer of the left-top of the bitmap.
202 * @param dragLayerY The y position in the DragLayer of the left-top of the bitmap.
207 * @param dragRegion Coordinates within the bitmap b for the position of item being dragged.
210 public void startDrag(Bitmap b, int dragLayerX, int dragLayerY,
261 * Draw the view into a bitmap.
263 Bitmap getViewBitmap(View v) {
281 Bitmap cacheBitmap = v.getDrawingCache();
287 Bitmap bitmap = Bitmap.createBitmap(cacheBitmap);
295 return bitmap;