标签: android ondraw invalidation
我有自定义视图,(它扩展了View类),它从Adapter的getView()更新:
public void setProgress(float progressDegrees) { this.progressDegrees = progressDegrees; invalidate(); }
我试图将setWillNotDraw(false)调用添加到构造函数中,视图的可见性是View.VISIBLE,但是onDraw()没有被调用。为什么呢?