android getResources的做用

 今天作一個Android的文件管理器,裏面用到不少的地方用到了getResources。 html


  1. Drawable currentIcon = null;  
  2.   
  3. currentIcon = getResources().getDrawable(R.drawable.folder);  
  4.   
  5. currentIcon = getResources().getDrawable(R.drawable.image);  

       一開始不是很理解爲何用 getResources()這個方法就能夠獲取存在系統的資源。因而看了一下文檔和翻閱了一下資料: java

      例如:把資源文件放到應用程序的/raw/raw下,那麼就能夠在應用中使用getResources獲取資源後,以openRawResource方法(不帶後綴的資源文件名)打開這個文件。例如: android


  1. Resources myResources = getResources();  
  2. InputStream myFile = myResources.openRawResource(R.raw.myfilename);  

和傳統的java文件操做同樣,在android Api中提供了openFileInput和openFileOutput方法來讀取設備上的文件。 this

簡寫 spa


  1. InputStream fs =this.getResources().openRawResource(R.raw.kb); (資源文件名爲kb.html, 不須要帶後綴.html)  
  2. InputStreamReader read = new InputStreamReader (fs,」gb2312″);  
  3. BufferedReader in = new BufferedReader(read);  

讀取res/drawable目錄下的png或者bmg htm


  1. //獲得Resources對象  
  2. Resources r = this.getContext().getResources();  
  3. //以數據流的方式讀取資源  
  4. Inputstream is = r.openRawResource(R.drawable.my_background_image);  
  5. BitmapDrawable bmpDraw = new BitmapDrawable(is);  
  6. Bitmap bmp = bmpDraw.getBitmap();  
相關文章
相關標籤/搜索