我想在不使用id的情況下在imageview中顯示圖像。Android按路徑顯示圖像
我將會把原文件夾,所有的圖像開放
try {
String ss = "res/raw/images/inrax/3150-MCM.jpg";
in = new FileInputStream(ss);
buf = new BufferedInputStream(in);
Bitmap bMap = BitmapFactory.decodeStream(buf);
image.setImageBitmap(bMap);
if (in != null) {
in.close();
}
if (buf != null) {
buf.close();
}
} catch (Exception e) {
Log.e("Error reading file", e.toString());
}
,但是這是不工作我想用它的路徑不上名字
我不想使用資源ID。我將把所有圖像放在資產中。 – nicky 2010-09-11 15:21:44