ImageView im = new ImageView(this);
File file = new File("/sdcard/default.jpg");
Uri uri = Uri.fromFile(file);
// uri -> file:///sdcard/default.jpg
Bitmap bm = Images.Media.getBitmap(getContentResolver(), uri);
im.setImageBitmap(bm);
'안드로이드' 카테고리의 다른 글
[android] timer, CountDownTimer, TimerTask (0) | 2013.02.14 |
---|---|
[android] 녹음하고 재생하기 (0) | 2013.02.14 |
[android] 화면 꺼짐 방지 (0) | 2013.02.05 |
[android] E-mail 보내기(이메일 파일 첨부) (0) | 2013.02.01 |
[android] custom gridView 간단하게 만들기 (0) | 2013.01.30 |