Android中实现view的更新UI有两组方法的问题
Android中实现view的更新有两组方法,一组是invalidate,另一组是postInvalidate,其中前者是在UI线程自身中使用,而后者在非UI线程中使用。SDK中说:public void invalidate() Invalidate the whole view. If the view is visible, onDraw(Canvas) will be called at some point in the future. This...