1

我已将一组图像加载到我的 SD 卡中,我想在我的页面卷曲活动中显示它们。

我检查了图像是否正确下载:

 ArrayList<String>  mStringList= new ArrayList<String>();
 File strPath = new File(Environment.getExternalStorageDirectory() + "/Pictures");
 int lists = strPath.listFiles().length; 
 Log.d("number of items in array ",String.valueOf(lists));

 File yourDir = new File(strPath, "");
 for (File f : yourDir.listFiles()) {
     if (f.isFile())
     {
         String name = f.getName();
         String v = strPath + "/" + name;
         mStringList.add(v);
     }
 }

这是位图提供程序:

 * Bitmap provider.
 */
private class PageProvider implements CurlView.PageProvider {

    // Bitmap resources.
    private int[] mBitmapIds = { R.drawable.obama, R.drawable.road_rage,
            R.drawable.taipei_101, R.drawable.world };

    @Override
    public int getPageCount() {
        return 5;
    }

    private Bitmap loadBitmap(int width, int height, int index) {
        Bitmap b = Bitmap.createBitmap(width, height,
                Bitmap.Config.ARGB_8888);
        b.eraseColor(0xFFFFFFFF);
        Canvas c = new Canvas(b);
        Drawable d = getResources().getDrawable(mBitmapIds[index]);

        int margin = 7;
        int border = 3;
        Rect r = new Rect(margin, margin, width - margin, height - margin);

        int imageWidth = r.width() - (border * 2);
        int imageHeight = imageWidth * d.getIntrinsicHeight()
                / d.getIntrinsicWidth();
        if (imageHeight > r.height() - (border * 2)) {
            imageHeight = r.height() - (border * 2);
            imageWidth = imageHeight * d.getIntrinsicWidth()
                    / d.getIntrinsicHeight();
        }

        r.left += ((r.width() - imageWidth) / 2) - border;
        r.right = r.left + imageWidth + border + border;
        r.top += ((r.height() - imageHeight) / 2) - border;
        r.bottom = r.top + imageHeight + border + border;

        Paint p = new Paint();
        p.setColor(0xFFC0C0C0);
        c.drawRect(r, p);
        r.left += border;
        r.right -= border;
        r.top += border;
        r.bottom -= border;

        d.setBounds(r);
        d.draw(c);

        return b;
    }

我该如何更换

// Bitmap resources.
        private int[] mBitmapIds = { R.drawable.obama, R.drawable.road_rage,
                R.drawable.taipei_101, R.drawable.world }; 
and Drawable d = getResources().getDrawable(mBitmapIds[index]);

到我的sd卡里的那些?

4

1 回答 1

1

将图像从 sdcard 转换为可绘制为:

BitmapFactory.Options options = new BitmapFactory.Options();
options.inPreferredConfig = Bitmap.Config.ARGB_8888;
Bitmap bitmap = BitmapFactory.decodeFile(mStringList[index], options);

Drawable d = new BitmapDrawable(bitmap);;
于 2013-01-09T08:58:37.790 回答