在服务类中获取imageView的宽度和高度

时间:2014-09-18 09:55:12

标签: android

我在视图中有服务和视图中的视图。当我得到该图像的宽度和高度时,结果为0.请帮助。视图在服务类中定义。

谢谢

1 个答案:

答案 0 :(得分:1)

为此你需要了解android ...中的UI线程的概念。

使用此..

    yourView.post(new Runnable() {

        @Override
        public void run() {
            // get the Width and height of the yourView Here.
        }
    });