2011-09-15 17 views

risposta

41
canvas.drawColor(Color.WHITE); 
BitmapDrawable bd = (BitmapDrawable) getResources().getDrawable(R.drawable.loading);  
Bitmap bm = bd.getBitmap();  
Paint paint = new Paint();  
paint.setAlpha(60);        //you can set your transparent value here  
canvas.drawBitmap(bm, 0, 0, paint); 
0
Paint p = new Paint(); 
p.setAlpha(70); 

Bitmap image = BitmapFactory.decodeResource(getResources(), R.drawable.wallpaper); 
canvas.drawBitmap(image, xPosition, yPosition, p); 
Problemi correlati