0
我如何使用ImageGallery顯示我已經保存在SD卡上特定位置的圖像?使用ImageGallery顯示SD卡中的圖像?
我如何使用ImageGallery顯示我已經保存在SD卡上特定位置的圖像?使用ImageGallery顯示SD卡中的圖像?
幾種方法可以做到這一點,例如
//Using an array with the names of your stored pics (myPics)
public View getView(final int position, View convertView, ViewGroup parent) {
ImageView myImageView = new ImageView(mContext);
if (convertView != null)
myImageView = (ImageView) convertView;
else
myImageView = new ImageView(mContext);
Bitmap bitmapImage = BitmapFactory.decodeFile("/sdcard/myTempFolfer/" + myPics(position));
BitmapDrawable drawableImage = new BitmapDrawable(bitmapImage);
myImageView.setImageDrawable(drawableImage);
return myImageView;
}