开发者

How to update Android Views upon modifications?

I have some methods in my View that modify some of the shapes that are drawn when called. In Java in order to make sure the component is updated I would call repaint(). Is there something that will make sure my view is updated correctly?

I had read somewhere that calling invalidate() in the onDraw() method would keep things up to d开发者_如何学Cate and therefore I wouldn't need to have something like repaint() in my methods that modify that shapes that are drawn.

Is this correct, or is there something else I have to do?

EDIT

To add in an example, a method I call in my view is:

public void setLineThickness(int thickness) {
    aLineThickness = thickness;

    if(aLineThicness > 1)
        //repaint();      - Okay in Java but not in Android

}


Calling invalidate() will tell the view it needs to redraw itself (call onDraw) sometime in the future. So if you change something in your view, like the line thickness, call invalidate() after it. That way you know your view will eventually be updated.

All your drawing code should be implemented in onDraw() and your other methods should just change the state of your view, which will then be used to draw it, after you call invalidate().

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜