onDraw()在无效后不会被调用

时间:2015-02-20 15:34:54

标签: android ondraw invalidation

我有自定义视图,(它扩展了View类),它从Adapter的getView()更新:

 public void setProgress(float progressDegrees) {
        this.progressDegrees = progressDegrees;
        invalidate();
 }

我试图将setWillNotDraw(false)调用添加到构造函数中,视图的可见性是View.VISIBLE,但是onDraw()没有被调用。为什么呢?

0 个答案:

没有答案