Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道 aView是如何创建的Android。在View创建对象时调用了哪些函数?最初constructors将被调用。接下来是什么?等等。如果有人知道对象创建后调用的函数顺序,请回复我。
View
Android
constructors
谢谢
我猜这可能会更好地帮助你。
1)构造函数:初始化变量
2) onMeansure : 准备画布,设置宽度和高度
3)OnDraw() : 绘制实际视图。
nowonDraw()将在特定间隔后连续调用,这取决于显示/处理器和 UI 事件在此处输入代码或调用invalidate()
onDraw()
invalidate()