http://www.jcodecraeer.com/a/anzhuokaifa/androidkaifa/2012/1201/655.htmlhtml
編輯推薦:稀土掘金,這是一個針對技術開發者的一個應用,你能夠在掘金上獲取最新最優質的技術乾貨,不單單是Android知識、前端、後端以致於產品和設計都有涉獵,想成爲全棧工程師的朋友不要錯過!前端
開發中常常用到 getResources() 函數,開始不知道如何使用 res 或者 assets 的文件,如今終於知道了其用法,記錄下來以便有朋友能使用到。
概要說明:
數據包package:android.content.res
主要類:Resources
InputStream openRawResource(int id) 獲取資源的數據流,讀取資源數據
把一個圖片資源,添加你的文件到你工程中res/drawable/目錄中去,能夠在代碼或XML佈局中,引用它也能夠用資源編號,好比你選擇一個文件只要去掉後綴就能夠了(例如:mmm_image.png 引用它是就是mm_image)。
當須要使用的xml資源的時候,就可使用context.getResources().getDrawable(R....資源的地址如:R.String.ok);
當你方法裏面沒有Context參數,能夠 this.getContext().getResources();這樣就能夠了。
下面詳細說明一下使用場景:
一、須要使用getResource()的時候必定要注意
必需要有Context, 這個通常的service或者activity即帶有
能夠用做成員變量,構造傳入或方法參數傳入就能夠了
二、引用xml文件時,可能經過:
getResources().getXml()獲的XML原始文件,而後再獲得XmlResourceParser對象
XmlResourceParser xrp = mRes.getXml(R.xml.personal);java
而利用R....能夠指定文件夾下面的某個xml文件進行加載使用android
三、其它的一些文件讀取方法
a、把資源文件放到應用程序的/raw/raw下,那麼就能夠在應用中使用getResources獲取資源後,canvas
以openRawResource方法(不帶後綴的資源文件名)打開這個文件後端
1
2
|
Resources myResources = getResources();
InputStream myFile = myResources.openRawResource(R.raw.xx_filename);
|
與普通java程序同樣,android提供了openFileInput和openFileOutput方法來讀取設備上的文件函數
1
2
3
|
InputStream fs = this .getResources().openRawResource(R.raw.index.htm); (資源文件名爲index.html, 不須要帶後綴.htm)
InputStreamReader read = new InputStreamReader (fs, "utf-8" );
BufferedReader in = new BufferedReader(read);
|
b、讀取res/drawable目錄下的png或者bmp佈局
1
2
3
4
5
6
|
//獲得Resources對象
Resources r = this .getContext().getResources();
//以數據流的方式讀取資源
Inputstream is = r.openRawResource(R.drawable.mm_image);
BitmapDrawable bmpDraw = new BitmapDrawable(is);
Bitmap bmp = bmpDraw.getBitmap();
|
若是須要利用圖片解碼器,以下使用:this
1
2
3
4
|
InputStream is = getResources().openRawResource(R.drawable.icon);
Bitmap mBitmap = BitmapFactory.decodeStream(is);
Paint mPaint = new Paint();
canvas.drawBitmap(mBitmap, 40, 40, mPaint);
|