if (mExt.matches("(dir)")) { Bitmap dir = BitmapFactory.decodeResource(getResources(), R.drawable.netdisc_search_list_img); mMySkydriveItem.setNetdiscListImgs(dir); } else if (mExt.matches("(doc|docx)")) { Bitmap doc = BitmapFactory.decodeResource(getResources(), R.drawable.netdisc_word_file); mMySkydriveItem.setNetdiscListImgs(doc); } else if (mExt.matches("(xls)")) { Bitmap xls = BitmapFactory.decodeResource(getResources(), R.drawable.netdisc_excel_file); mMySkydriveItem.setNetdiscListImgs(xls); } else if (mExt.matches("(ppt)")) { Bitmap ppt = BitmapFactory.decodeResource(getResources(), R.drawable.netdisc_ppt_file); mMySkydriveItem.setNetdiscListImgs(ppt); } else if (mExt.matches("(jpg|jpeg|png|gif|bmp)")) { Bitmap jpg = BitmapFactory.decodeResource(getResources(), R.drawable.netdisc_img_file); mMySkydriveItem.setNetdiscListImgs(jpg); } else if (mExt.matches("(rar|zip|tar|jar|iso)")) { Bitmap zip = BitmapFactory.decodeResource(getResources(), R.drawable.netdisc_zip_file); mMySkydriveItem.setNetdiscListImgs(zip); } else if (mExt.matches("(acm|aif|aifc|aiff|ans|asf|aifc|avi|asp|ram|mov)")) { Bitmap zip = BitmapFactory.decodeResource(getResources(), R.drawable.netdisc_zip_file); mMySkydriveItem.setNetdiscListImgs(zip); } else { }