我在画布上绘制了九个矩形,我通过位图通过从资源中解码来设置图像。我生成1到10之间的随机数并将其设置为文本视图。 当用户根据文本视图中显示的数字移动到矩形时,应更改该特定矩形的图像
if(textview.getText().toString()==1)
{
canvas.drawBitmap(bitmapHolo,null,rect[i],null);
}
else
{
canvas.drawBitmap(bitmapRectangle,null,rect[i],null);
}