如何从自定义目录加载缩略图?

时间:2013-04-12 07:50:10

标签: android thumbnails fetch

我搜索了很多,但我有样本来从UrlHttp获取缩略图, 但我实际上需要从sdcard上的我自己的目录中获取图像的缩略图,而无需访问Android默认缩略图目录,这就是我需要从中获取图像的缩略图 mnt/sdcard/myown/1.png

请有人帮忙吗?

提前致谢。

2 个答案:

答案 0 :(得分:0)

Environment.getExternalStorageDirectory()返回“/ mnt / sdcard”

String imagePath = Environment.getExternalStorageDirectory().toString() + PATH_TO_IMAGE;
Bitmap bitmap = BitmapFactory.decodeFile(imagePath);

答案 1 :(得分:0)

@Override
public void onCreate(Bundle savedInstanceState) {
    button1 = (Button) findViewById(R.id.button1);
    button1.setOnClickListener(onClickListener);
    image = (ImageView) findViewById(R.id.imageView1);

}

private OnClickListener onClickListener = new OnClickListener() {
    @Override
    public void onClick(final View v) {
        switch(v.getId()){
            case R.id.button1:
            String imagePath = Environment.getExternalStorageDirectory().toString() +"/myown/1.png";
            Bitmap bitmap = BitmapFactory.decodeFile(imagePath);
            image.setImageBitmap(bitmap);
            break;
        }
    }
};

你的layout.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <ImageView
        android:id="@+id/imageView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/android" />

    <Button
        android:id="@+id/button1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Change Image" />

</LinearLayout>