2010년 12월 1일 수요일

[Android]이미지 파일을 갤러리에서 바로 보기

File file = new File("/sdcard/sun.jpg")
Intent i = new Intent(Intent.ACTION_VIEW);
i.setDataAndType(Uri.parse("file://" + file.getAbsolutePath()), "image/*");
startActivity(i);

댓글 없음:

댓글 쓰기