2011-03-10 78 views

回答

1

這是supossing你有一個名爲「myPics」文件夾,裏面所謂的「克隆圖片一個基本的例子。 jpg「

File imageFile = new File("/sdcard/myPics/clone.png"); 
if (imageFile.exists()){ 
    //load clone.jpg into your ImageView. 
    Bitmap bitmap = BitmapFactory.decodeFile(imageFile.getAbsolutePath()); 
    BitmapDrawable drawable = new BitmapDrawable(this.getResources(), bitmap); 
    myimageView.setScaleType(ImageView.ScaleType.FIT_CENTER); 
    myimageView.setImageDrawable(drawable); 
}   
+0

@PaulLammertsma嘿歡呼,但它只顯示黑屏,你知道這是爲什麼嗎? – clonebaby59

+0

歡呼,永遠不會解決它 – clonebaby59