如何根据条件更改位图图像运行时并在画布上设置?

时间:2012-06-30 05:14:14

标签: android-layout

我在画布上绘制了九个矩形,我通过位图通过从资源中解码来设置图像。我生成1到10之间的随机数并将其设置为文本视图。 当用户根据文本视图中显示的数字移动到矩形时,应更改该特定矩形的图像

if(textview.getText().toString()==1)
{    
    canvas.drawBitmap(bitmapHolo,null,rect[i],null);    
}
else
{       
    canvas.drawBitmap(bitmapRectangle,null,rect[i],null);    
}

0 个答案:

没有答案