Most visited

Recently visited

Added in API level 1

BitmapShader

public class BitmapShader
extends Shader

java.lang.Object
   ↳ android.graphics.Shader
     ↳ android.graphics.BitmapShader


Shader used to draw a bitmap as a texture. The bitmap can be repeated or mirrored by setting the tiling mode.

Summary

Public constructors

BitmapShader(Bitmap bitmap, Shader.TileMode tileX, Shader.TileMode tileY)

Call this to create a new shader that will draw with a bitmap.

Inherited methods

From class android.graphics.Shader
From class java.lang.Object

Public constructors

BitmapShader

Added in API level 1
BitmapShader (Bitmap bitmap, 
                Shader.TileMode tileX, 
                Shader.TileMode tileY)

Call this to create a new shader that will draw with a bitmap.

Parameters
bitmap Bitmap: The bitmap to use inside the shader
tileX Shader.TileMode: The tiling mode for x to draw the bitmap in.
tileY Shader.TileMode: The tiling mode for y to draw the bitmap in.

Hooray!