>>128 File file = new File("/sdcard/hoge.png"); FileInputStream is = new FileInputStream(file); Bitmap bitmap = BitmapFactory.decodeStream(is, null, null); Bitmap b = bitmap.copy(Bitmap.Config.ARGB_8888, true); TextView tv = new TextView(this); tv.setBackgroundDrawable(new BitmapDrawable(b));