程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> 版本控制-android加載圖片的時候圖片控件是黑色的

版本控制-android加載圖片的時候圖片控件是黑色的

編輯:編程綜合問答
android加載圖片的時候圖片控件是黑色的

我使用我自己寫的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
看看是不是這個原因

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved