我在视图中有服务和视图中的视图。当我得到该图像的宽度和高度时,结果为0.请帮助。视图在服务类中定义。
谢谢
答案 0 :(得分:1)
为此你需要了解android ...中的UI线程的概念。
使用此..
yourView.post(new Runnable() {
@Override
public void run() {
// get the Width and height of the yourView Here.
}
});