41. View.inflate和LayoutInflater.inflate的区别?
实际上没有区别,View.inflate实际上是对LayoutInflater.inflate做了一层包装,
在功能上,LayoutInflate功能更加强大。View.inflate实际上最终调用的还是LayoutInflater.inflate
(@LayoutRes int resource, @nullable ViewGroup root)三个参数的方法,
这里如果传入的root如果不为空,
那么解析出来的View会被添加到这个ViewGroup当中去。而LayoutInflater.inflate方法则可以指定当前View是否需要添加到ViewGroup中去。
42. 简述invalidate()和postInvalidate()方法的区别和应用场景?
invalidate()用来重绘UI,需要在UI线程调用。postInvalidate()也是用来重新绘制UI,它可以在UI线程调用,
也可以在子线程中调用postInvalidate()方法内部通过Handler发送了
一个消息将线程切回到UI线程通知重新绘制,并不是说postInvalidate()
可以在子线程更新UI,本质上还是在UI线程发生重绘,
只不过我们使用postInvalidate()它内部会帮我们切换线程/**
*Cause an invalidate to happen on a
* subsequent cycle through the event loop.
* Use this to invalidate the View from a
* non-UI thread.
*
*
This method can be invoked from
* outside of the UI thread
* only