Android 中 Activity 加载后执行代码

发布于 2024-11-23 17:08:17 字数 187 浏览 2 评论 0原文

我正在尝试在活动加载后我的应用程序格式化屏幕中的一些图像。问题是在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

残龙傲雪 2024-11-30 17:08:17

Android 中的视图不像 Blackberry 或 iPhone 那样具有固定的大小/位置;相反,它们是动态布局的。布局发生的时间比 onCreate/onResume 晚很多,并且理论上可以发生很多次。每个视图都有方法 onMeasureonLayout 负责。只有在 onLayout 方法返回后,您才能知道视图的大小和位置。在此之前,视图的大小为 0,位置为 0(正如您所注意到的)。

因此,尝试在 onCreate/onResume 中获取 ImageView 的大小没有任何意义,因为此时尚未调用 onLayout。

相反,像这样重写 onLayout 并在那里做你的事情:

public class MyImageView extends ImageView {
    @Override
    protected void onLayout(boolean changed, int left, int top, int right, int bottom) {
        super.onLayout(changed, left, top, right, bottom);
        // at this point size and position are known
        int h = getHeight();
        int w = getWidth();
        doSomethingCool(h,w);
    }
}

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 methods onMeasure and onLayout which are responsible for that. Only after onLayout 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 because onLayout hasn't yet been called at that point.

Instead, override onLayout like this and do your stuff there:

public class MyImageView extends ImageView {
    @Override
    protected void onLayout(boolean changed, int left, int top, int right, int bottom) {
        super.onLayout(changed, left, top, right, bottom);
        // at this point size and position are known
        int h = getHeight();
        int w = getWidth();
        doSomethingCool(h,w);
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文