Lines Matching defs:bitmap
22 import android.graphics.Bitmap;
165 * @param bmp The bitmap that represents the view being dragged
170 * @param dragRegion Coordinates within the bitmap b for the position of item being dragged.
173 public void startDrag(View v, Bitmap bmp, DragSource source, Object dragInfo, int dragAction,
195 * @param b The bitmap to display as the drag image. It will be re-scaled to the
197 * @param dragLayerX The x position in the DragLayer of the left-top of the bitmap.
198 * @param dragLayerY The y position in the DragLayer of the left-top of the bitmap.
203 * @param dragRegion Coordinates within the bitmap b for the position of item being dragged.
206 public DragView startDrag(Bitmap b, int dragLayerX, int dragLayerY,
257 * Draw the view into a bitmap.
259 Bitmap getViewBitmap(View v) {
277 Bitmap cacheBitmap = v.getDrawingCache();
283 Bitmap bitmap = Bitmap.createBitmap(cacheBitmap);
291 return bitmap;