我使用我自己寫的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);
}
}
http://www.cnblogs.com/iceface/archive/2013/04/16/3024354.html
看看是不是這個原因