我使用我自己写的ImageView进行加载图片,报出cannot generate texture from bitmap的错误,而且图片控件是黑色的,百度搜了,说是因为设置图片的非硬件加速模式是在api11之后添加的,要进行版本控制,我进行控制了,程序直接停止了,我想问问是不是我写得ImageView有问题?下面是我的ImageView类:
public class Imageview extends ImageView implements OnClickListener{
private String path;
public Imageview(Context context, AttributeSet attrs) {
super(context, attrs);
// TODO Auto-generated constructor stub
}
public Imageview(Context context,String path){
super(context);
this.path=path;
setOnClickListener(this);
}
@Override
public void onClick(View arg0) {
// TODO Auto-generated method stub
System.out.println("ok");
System.out.println(path);
}
}