程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> bitmap-獲取res文件夾中的jpg文件ID

bitmap-獲取res文件夾中的jpg文件ID

編輯:編程綜合問答
獲取res文件夾中的jpg文件ID

在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下

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