Android 中 Activity 加载后执行代码
我正在尝试在活动加载后我的应用程序格式化屏幕中的一些图像。问题是在 onCreate()
、onResume()
方法中,我的 ImageView
的宽度和高度=0。调整视图大小后如何运行一些代码? 我测试了 onPostResume()
但它不起作用 =(
I'm trying my app format some images in the screen after the Activity loads. The problem is while inside onCreate()
, onResume()
methods my ImageView
have width and height=0. How can I run some code after the views are resized?
I test onPostResume()
but it dont work =(
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Android 中的视图不像 Blackberry 或 iPhone 那样具有固定的大小/位置;相反,它们是动态布局的。布局发生的时间比 onCreate/onResume 晚很多,并且理论上可以发生很多次。每个视图都有方法
onMeasure
和onLayout
负责。只有在onLayout
方法返回后,您才能知道视图的大小和位置。在此之前,视图的大小为 0,位置为 0(正如您所注意到的)。因此,尝试在 onCreate/onResume 中获取 ImageView 的大小没有任何意义,因为此时尚未调用 onLayout。
相反,像这样重写
onLayout
并在那里做你的事情:Views in Android do not have fixed size/position like in Blackberry or iPhone; instead, they are layed out dynamically. Layout happens much later than
onCreate/onResume
, and theoretically can happen many times. Every view has methodsonMeasure
andonLayout
which are responsible for that. Only afteronLayout
method returns you can tell the view's size and position. Before that the view's size is 0 and position is 0 (as you've noticed).So it makes little sense trying to get ImageView's size in
onCreate/onResume
becauseonLayout
hasn't yet been called at that point.Instead, override
onLayout
like this and do your stuff there: