1 /**
2 * 得到相应背景色的位图
3 * @param width 位图的宽度
4 * @param height 位图的高度
5 * @param color 位图的背景色
6 * @return 该颜色的位图
7 */
8 public Bitmap getBitmapByColor(int width,int height,int color){
9 Bitmap newBitmap;
10 int[] colors=new int[width*height];//新建像素点数组,数组元素个数是位图的宽乘以高
11 for (int i=0;i){
12 colors[i]=color;//将颜色赋值给每一个像素点
13 }
14 newBitmap= createBitmap(colors,width,height,Bitmap.Config.ARGB_8888);
15 return newBitmap;
16 }