返回列表 發帖

Android App - 檢查 res 是否存在

如果我們不檢查 resources 是否存在便對 resource 進行處理, Apps 很容易便 crash

  1. int resID = mContext.getResources().getIdentifier("my_resource_name", "drawable", mContext.getPackageName());      
  2. if (resID!=0) {   
  3.     // if resID ==0, means no such file or error
  4. }
複製代碼
Bill Tang     MSN:billtang@openplatform.com.hk
Openplatform Technology Co.,Ltd. 資訊坊科技有限公司  
無線工程施工、方案設計、無線產品、天饋材料、終端設備綜合供應商
Tel: 852-27491011  Fax: 852-81483532

返回列表