라이브러리 추가

 

import android.net.Uri;
import java.io.File;           

 

//=========================================

 

1. URI 이용방법

 try { 

     

    File files = new File("파일 실제 경로");

    if(files.exists()==true) {

 

           Uri uri = Uri.parse("파일 실제 경로");
           imagview1.setImageURI(uri);      
      }

   }catch (Exception e){ 
       e.printStackTrace(); 
   } 

 

//==========================================

 

 

2. Bitmap  이용방법

 

 try { 

     

    File files = new File("파일 실제 경로");

    if(files.exists()==true) {

 

          Bitmap myBitmap = BitmapFactory.decodeFile(files.getAbsolutePath());
           imagview1.setImageBitmap(myBitmap);
      }

   }catch (Exception e){ 
       e.printStackTrace(); 
   } 

 

+ Recent posts