2个回答
2015-02-05
展开全部
Android的Canvas本身没有提供fillRect函数但是它提供了个功能相近的函数。
public void drawColor (int color)
Fill the entire canvas' bitmap (restricted to the current clip) with the specified color, using srcover porterduff mode.
可以把它封装到一个fillRect函数,以便调用。
public void fillRect(int x,int y,int w,int h)
{
g.clipRect(x, y, w, h);
g.drawColor(p.getColor());
g.clipRect(rect);
}
public void drawColor (int color)
Fill the entire canvas' bitmap (restricted to the current clip) with the specified color, using srcover porterduff mode.
可以把它封装到一个fillRect函数,以便调用。
public void fillRect(int x,int y,int w,int h)
{
g.clipRect(x, y, w, h);
g.drawColor(p.getColor());
g.clipRect(rect);
}
更多追问追答
追问
g 和 p 是什么类的对象啊?
谢谢!
追答
drawColor (int color)
p 随便个,就是要Color的int型表示就可以了
g就是画笔。
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |