2013-04-06 53 views
0

enter image description here 这里是我的CoverFlow与可绘:( 这是我的形象适配器代码如何添加SD卡图像到coverflow?

/** The Constant IMAGE_RESOURCE_IDS. */ 
private static final List<Integer> IMAGE_RESOURCE_IDS = new ArrayList<Integer>(DEFAULT_LIST_SIZE); 

/** The Constant DEFAULT_RESOURCE_LIST. */ 
private static final int[] DEFAULT_RESOURCE_LIST = { 
    R.drawable.promo_blue_bg_medium, 
    R.drawable.promo_green_bg_medium, 
    R.drawable.flow, 
    R.drawable.promo_yellow_bg_medium, 
    R.drawable.promo_black_bg_medium , 

}; 

/** The bitmap map. */ 
private final Map<Integer, WeakReference<Bitmap>> bitmapMap = new HashMap<Integer, WeakReference<Bitmap>>(); 

private final Context context; 

/** 
* Creates the adapter with default set of resource images. 
* 
* @param context 
*   context 
*/ 
public ResourceImageAdapter(final Context context) { 
    super(); 
    this.context = context; 
    setResources(DEFAULT_RESOURCE_LIST); 
} 

/** 
* Replaces resources with those specified. 
* 
* @param resourceIds 
*   array of ids of resources. 
*/ 
public final synchronized void setResources(final int[] resourceIds) { 



     String ExternalStorageDirectoryPath = Environment 
     .getExternalStorageDirectory() 
     .getAbsolutePath(); 

     String targetPath = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_PICTURES).getAbsolutePath() + "/CamWay/"; 



     File targetDirector = new File(targetPath); 


    IMAGE_RESOURCE_IDS.clear(); 
    for (final int resourceId : resourceIds) { 
     IMAGE_RESOURCE_IDS.add(resourceId); 
    } 
    notifyDataSetChanged(); 
} 

/* 
* (non-Javadoc) 
* 
* @see android.widget.Adapter#getCount() 
*/ 
@Override 
public synchronized int getCount() { 
    return IMAGE_RESOURCE_IDS.size(); 
} 

/* 
* (non-Javadoc) 
* 
* @see pl.polidea.coverflow.AbstractCoverFlowImageAdapter#createBitmap(int) 
*/ 
@Override 
protected Bitmap createBitmap(final int position) { 
    Log.v(TAG, "creating item " + position); 
    final Bitmap bitmap = ((BitmapDrawable) context.getResources().getDrawable(IMAGE_RESOURCE_IDS.get(position))) 
      .getBitmap(); 
    bitmapMap.put(position, new WeakReference<Bitmap>(bitmap)); 
    return bitmap; 
} 

}

你看,5绘制上市above.I想负荷5最后添加图片来自folder.How我可以SD卡图像添加到该代码。

我试图用显示5张CoverFlow的最后拍摄的照片。 我希望有人能帮助我。

EDIT(最后一个代码):

public class ResourceImageAdapter extends AbstractCoverFlowImageAdapter { 

    //Dosya alımı başlangıç 
    public class ImageAdapter extends BaseAdapter { 

      private Context mContext; 
      ArrayList<String> itemList = new ArrayList<String>(); 

      public ImageAdapter(Context c) { 
      mContext = c; 
      } 

      void add(String path){ 
      itemList.add(path); 
      } 

     @Override 
     public int getCount() { 
      return itemList.size(); 
     } 

     @Override 
     public Object getItem(int position) { 
      // TODO Auto-generated method stub 
      return itemList.get(position); 
     } 

     @Override 
     public long getItemId(int position) { 
      // TODO Auto-generated method stub 
      return 0; 
     } 

     @Override 
     public View getView(int position, View convertView, ViewGroup parent) { 
      ImageView imageView; 
       if (convertView == null) { // if it's not recycled, initialize some attributes 
        imageView = new ImageView(mContext); 
        imageView.setLayoutParams(new GridView.LayoutParams(220, 220)); 
        imageView.setScaleType(ImageView.ScaleType.CENTER_CROP); 
        imageView.setPadding(8, 8, 8, 8); 
       } else { 
        imageView = (ImageView) convertView; 
       } 

       Bitmap bm = decodeSampledBitmapFromUri(itemList.get(position), 220, 220); 

       imageView.setImageBitmap(bm); 
       return imageView; 
     } 

     public Bitmap decodeSampledBitmapFromUri(String path, int reqWidth, int reqHeight) { 

      Bitmap bm = null; 
      // First decode with inJustDecodeBounds=true to check dimensions 
      final BitmapFactory.Options options = new BitmapFactory.Options(); 
      options.inJustDecodeBounds = true; 
      BitmapFactory.decodeFile(path, options); 

      // Calculate inSampleSize 
      options.inSampleSize = calculateInSampleSize(options, reqWidth, reqHeight); 

      // Decode bitmap with inSampleSize set 
      options.inJustDecodeBounds = false; 
      bm = BitmapFactory.decodeFile(path, options); 

      return bm; 
     } 

     public int calculateInSampleSize(

      BitmapFactory.Options options, int reqWidth, int reqHeight) { 
      // Raw height and width of image 
      final int height = options.outHeight; 
      final int width = options.outWidth; 
      int inSampleSize = 1; 

      if (height > reqHeight || width > reqWidth) { 
      if (width > height) { 
      inSampleSize = Math.round((float)height/(float)reqHeight);  
      } else { 
      inSampleSize = Math.round((float)width/(float)reqWidth);  
      } 
      } 

      return inSampleSize;  
     } 

     } 

      ImageAdapter myImageAdapter; 

      //Burası Dosya alımı bitimi 
    /** The Constant TAG. */ 
    private static final String TAG = ResourceImageAdapter.class.getSimpleName(); 

    /** The Constant DEFAULT_LIST_SIZE. */ 
    private static final int DEFAULT_LIST_SIZE = 20; 

    /** The Constant IMAGE_RESOURCE_IDS. */ 
    private static final List<Integer> IMAGE_RESOURCE_IDS = new ArrayList<Integer>(DEFAULT_LIST_SIZE); 

    /** The Constant DEFAULT_RESOURCE_LIST. */ 
    private static final int[] DEFAULT_RESOURCE_LIST = { 
     R.drawable.promo_blue_bg_medium, 
     R.drawable.promo_green_bg_medium, 
     R.drawable.flow, 
     R.drawable.promo_yellow_bg_medium, 
     R.drawable.promo_black_bg_medium , 

    }; 
    private String[] mFileStrings; 
    ArrayList<String> f = new ArrayList<String>(); 

    public void getFromSdcard() 
    { 
     File file= new File(Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_PICTURES).getAbsolutePath() ,"CamWay"); 

      if (file.isDirectory()) 
      { 
       File[] listFile = file.listFiles();//get list of filess 
       mFileStrings = new String[listFile.length]; 

       for (int i = 0; i < listFile.length; i++) 
       { 
        mFileStrings[i] = listFile[i].getAbsolutePath(); 
        f.add(listFile[i].getAbsolutePath());//add path of files to array list 
        System.out.println("...................................."+mFileStrings[i]); 
       } 
      } 
    } 

    /** The bitmap map. */ 
    private final Map<Integer, WeakReference<Bitmap>> bitmapMap = new HashMap<Integer, WeakReference<Bitmap>>(); 

    private final Context context; 

    /** 
    * Creates the adapter with default set of resource images. 
    * 
    * @param context 
    *   context 
    */ 
    public ResourceImageAdapter(final Context context) { 
     super(); 
     this.context = context; 
     setResources(DEFAULT_RESOURCE_LIST); 
    } 

    /** 
    * Replaces resources with those specified. 
    * 
    * @param resourceIds 
    *   array of ids of resources. 
    */ 
    public final synchronized void setResources(final int[] resourceIds) { 



      String ExternalStorageDirectoryPath = Environment 
      .getExternalStorageDirectory() 
      .getAbsolutePath(); 

      String targetPath = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_PICTURES).getAbsolutePath() + "/CamWay/"; 



      File targetDirector = new File(targetPath); 


     IMAGE_RESOURCE_IDS.clear(); 
     for (final int resourceId : resourceIds) { 
      IMAGE_RESOURCE_IDS.add(resourceId); 
     } 
     notifyDataSetChanged(); 
    } 

    /* 
    * (non-Javadoc) 
    * 
    * @see android.widget.Adapter#getCount() 
    */ 
    @Override 
    public synchronized int getCount() { 
     return IMAGE_RESOURCE_IDS.size(); 
    } 

    /* 
    * (non-Javadoc) 
    * 
    * @see pl.polidea.coverflow.AbstractCoverFlowImageAdapter#createBitmap(int) 
    */ 
    @Override 
    protected Bitmap createBitmap(final int position) { 
     Log.v(TAG, "creating item " + position); 
     final Bitmap bitmap = BitmapFactory.decodeFile(f.get(position)); 

     bitmapMap.put(position, new WeakReference<Bitmap>(bitmap)); 

     return bitmap; 
    } 
} 

编辑2:

启动,然后显示从开始3项。当我尝试一下4+项目,它停止。 这是代码 - getFromSdcard() ; int size= f.size()-5; //get the size of arraylist then decrease it by 5 //then loop from that point to your arraylist size //to get the last 5 items in the list for(int j=size;j<f.size();j++) { System.out.println("Position = "+j); System.out.println("Path of files"+f.get(j)); } final Bitmap bitmap = BitmapFactory.decodeFile(f.get(position)); bitmapMap.put(position, new WeakReference<Bitmap>(bitmap)); return bitmap;

04-06 21:41:05.013: E/AndroidRuntime(11217): at  com.project.smyrna.camway.ResourceImageAdapter.createBitmap(ResourceImageAdapter‌​.java:152) 

--line是final Bitmap bitmap = BitmapFactory.decodeFile(f.get(position));

回答

1
private String[] mFileStrings; 
ArrayList<String> f = new ArrayList<String>(); 

public void getFromSdcard() 
{ 
    File file= new File(android.os.Environment.getExternalStorageDirectory(),"Your Sdcard"); 

     if (file.isDirectory()) 
     { 
      listFile = file.listFiles();//get list of files 
      for (int i = listFile.length-5; i < listFile.length; i++) 
      { 
        //get the length decrease it 5 . loop to last 
       mFileStrings[i] = listFile[i].getAbsolutePath(); 
       f.add(listFile[i].getAbsolutePath());//add path of files to array list 
       System.out.println("...................................."+mFileStrings[i]); 
      } 
     } 
} 

您可以在SD卡的文件夹下获得文件的路径。但请确保SD卡文件夹没有其他文件格式。 ArrayList然后传递到您的适配器以显示CoverFlow的同一

,以过滤png格式,你可以使用下面的

File dir= new File(android.os.Environment.getExternalStorageDirectory()); 

文件然后调用

walkdir(dir); 

ArrayList<String> filepath= new ArrayList<String>();//contains list of all files ending with 

public void walkdir(File dir) { 
String Patternpng = ".png"; 

File listFile[] = dir.listFiles(); 

if (listFile != null) { 
for (int i = 0; i < listFile.length; i++) { 

if (listFile[i].isDirectory()) { 
    walkdir(listFile[i]); 
} else { 
    if (listFile[i].getName().endsWith(Patternpng)){ 
     //Do what ever u want 
     filepath.add(listFile[i].getAbsolutePath()); 
    } 
    } 
    } 
}  
} 

从的评论使我假设您需要显示sdcard文件夹中的最后5个项目

  int size= f.size()-5; 
     //get the size of arraylist then decrease it by 5 
     //then loop from that point to your arraylist size 
     //to get the last 5 items in the list 
     for(int j=size;j<f.size();j++) 
     { 
      System.out.println("Position = "+j); 
      System.out.println("Path of files"+f.get(j)); 
     } 

您的适配器

public class MyAdapter extends AbstractCoverFlowImageAdapter { 


@Override 
public int getCount() { 
    // TODO Auto-generated method stub 
    return f.size(); 
} 

@Override 
public Object getItem(int position) { 
    // TODO Auto-generated method stub 
    return position; 
} 

@Override 
public long getItemId(int position) { 
    // TODO Auto-generated method stub 
    return 0; 
} 

    public View getView(int position, View convertView, ViewGroup parent) { 
     //inflate layout 
      //do something 
      //use the edit 2 to get last 5 items in the arraylist. 
      ImageView image=(ImageView)vi.findViewById(R.id.ivv); 
      Bitmap b = BitmapFactory.decodeFile(f.get(position)); 
      image.setImageBitmap(b);  
    } 

    } 

UPDATE:

  1. 添加只剩下最后5条文件路径到您的ArrayList F IN getFromSdcard()

  2. 你的列表视图项数为f.size()

  3. 要获取路径,可以在getview()中使用f.get(position)。

在getFromSdcard()

 for (int i = listFile.length-5; i < listFile.length; i++) 
     // add only last 5 file paths from your folder 

在您的适配器

@Override 
public int getCount() { 
// TODO Auto-generated method stub 
return f.size(); 
} 

在getView

 ImageView image=(ImageView)vi.findViewById(R.id.ivv); 
     Bitmap b = BitmapFactory.decodeFile(f.get(position)); 
     image.setImageBitmap(b); 
+0

太感谢你了。我明白,但我无法实现。最终位图bitmap =((BitmapDrawable)context.getResources()。getDrawable(f.get(position))) - 它说f应该是int。我有点困惑 – 2013-04-06 17:20:26

+1

位图b = BitmapFactory.decodeFile(f.get (位置));检查编辑 – Raghunandan 2013-04-06 17:24:16

+0

04-06 20:29:24.075:E/AndroidRuntime(28472):引起:java.lang.IndexOutOfBoundsException:索引2无效,大小为0 - 最终位图位图= BitmapFactory.decodeFile(f.get (position)); ----我得到了这个异常。我想错了,什么大小?!??我想了解--- – 2013-04-06 17:32:08