Android:在SDK 4.2中调用View.layout()时崩溃

时间:2013-07-30 11:44:36

标签: android

我写了一个应用程序,我在其中调用child.layout(),其中“child”是FrameLayout,然后我在SDK2.2手机上运行它,没关系;但是当我在SDK4.1 pad上运行它时崩溃了。

class Child extends FrameLayout{
 ....
}
class B extends ViewGroup {
 Child c = new Child();
    c.mesure();
    c.layout();//crashed here on Android4.2

}

请帮帮我。

提前致谢。

0 个答案:

没有答案