类 test 继承PopupWindow,在实例化test时,android 4.0以上项目没有问题,用2.3时报空指针异常。
解决方法:
在构造方法最前面加 super();
如:(无参构造方法)
public test (){
super();
}
(有参)
public test (Context context){
super(context);
}
类 test 继承PopupWindow,在实例化test时,android 4.0以上项目没有问题,用2.3时报空指针异常。
解决方法:
在构造方法最前面加 super();
如:(无参构造方法)
public test (){
super();
}
public test (Context context){
super(context);
}