在res文件夾中有自動生成的drawable-hdpi文件夾, 其中有一個jpeg.文件。我先要獲取它的ID時參考資料上寫"R.drawable.myimage" ,我用完後報錯誤: "cannot be resolved to a variable"
代碼:
import android.R;
import android.content.Context;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.view.View;
public class MyCanvas extends View{
Bitmap bmp;
public MyCanvas(Context context) {
super(context);
BitmapFactory.Options opt = new BitmapFactory.Options();
opt.inJustDecodeBounds = true;
bmp = BitmapFactory.decodeResource(context.getResources(), R.drawable.85849);
}
}
jpg文件的名臣是85849
drawable-hdpi下可以創建目錄,當編譯器不能的在R.java中的生成ID,
如果圖片很多可以考慮放在assets下