从SDCard查询图像并将其显示在GridView

时间:2015-10-21 20:46:26

标签: android android-fragments android-gridview android-recyclerview android-cursorloader

我试图解决这个问题。我有一些代码使用CursorLoader从SD卡查询图像,并借助SimpleCursorAdapter在GridView中显示它们。我在网上跟踪了一些例子并阅读了文档。我知道我的事情是对的。代码运行没有任何错误,但是我无法在网格上显示缩略图。以下是我到目前为止的代码:

GalleryFragment.java

public class GalleryFragment extends Fragment {

    private SimpleCursorAdapter adapter;
    public static final int PHOTO_LIST_ID = 0x01;

    @Nullable
    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
        View view = inflater.inflate(R.layout.fragment_gallery, container, false);
        // Bind adapter to grid
        setupCursorAdapter();
        // Initialize the loader with a special ID and the defined callbacks
        getLoaderManager().initLoader(PHOTO_LIST_ID,
                new Bundle(), imageLoader);
        GridView gridView = (GridView) view.findViewById(R.id.gridView);
        gridView.setAdapter(adapter);
        return view;

    }

    private void setupCursorAdapter() {
        String[] from = {MediaStore.Images.Thumbnails.DATA};
        int[] to = {R.id.imageView};
        adapter = new SimpleCursorAdapter(getActivity().getBaseContext(),
                R.layout.gallery_image_item,
                null, from, to,
                0);
    }

    private LoaderManager.LoaderCallbacks<Cursor> imageLoader =
            new LoaderManager.LoaderCallbacks<Cursor>() {

                @Override
                public Loader<Cursor> onCreateLoader(int id, Bundle args) {
                    // Define the columns to retrieve
                    String[] projection = {MediaStore.Images.Thumbnails._ID,
                        MediaStore.Images.Thumbnails.DATA};
                    return new CursorLoader(getActivity(),
                            MediaStore.Images.Thumbnails.EXTERNAL_CONTENT_URI,
                            projection, null, null, null);
                }

                @Override
                public void onLoadFinished(Loader<Cursor> loader, Cursor data) {
                    adapter.swapCursor(data);
                }

                @Override
                public void onLoaderReset(Loader<Cursor> loader) {
                    adapter.swapCursor(null);
                }
            };
}

fragment_gallery.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="edu.sfsu.csc780.pictachio.GalleryFragment">

    <GridView
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:id="@+id/gridView"
        android:numColumns="auto_fit"
        android:verticalSpacing="10dp"/>

</LinearLayout>

gallery_image_item.xml

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


    <ImageView
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:id="@+id/imageView"
        android:padding="10dp"
        android:adjustViewBounds="true"
        android:contentDescription="ImageView" />
</FrameLayout>

我在很多地方读过,推荐使用RecyclerView而不是GridView。我曾尝试过它,但我不知道要为此创建什么样的模型。对此有任何帮助表示赞赏。感谢。

2 个答案:

答案 0 :(得分:0)

我不明白使用getLoaderManager()和initLoader()来获取图像。一种方法是从SQLite数据库中获取它们。适当的Google文档是@ SQL query。我使用该查询方法提供了示例代码。但是我从来没有在Android中获取图像。

Uri uri = MediaStore.Audio.Media.EXTERNAL_CONTENT_URI;
String[] cols = new String[]{
                MediaStore.Images.Media.DATA,  // get the image
};
//String where = MediaStore.Images.Media.DATA;

Cursor cursor = getContentResolver().query(uri, cols, null, null, null);
if(cursor.moveToFirst()) {
   int column_image = cursor.getColumnIndexOrThrow(MediaStore.Images.Media.DATA);
   res = cursor.getString(column_image);
}
cursor.close();

注意:

  • query()的第三个和第四个参数对于过滤返回的数据非常有用。
  • cursor对象从查询返回,可以遍历,上面列出了示例代码。
  • 另一个有趣的方法是使用环境类的@ getExternalStorageDirectory。我用它来查找特定目录中的文件。这种技术实际上可能更快,因为它在特定目录中搜​​索而不是查询数据库。但是,可能存在不受欢迎的权限问题,尤其是SD卡。

尝试一下,让我们知道会发生什么。

答案 1 :(得分:0)

最好的方法是使用recent-images库。这很简单。只需将库依赖项添加到项目中,然后将下面的行添加到您的类中。您的适配器已准备就绪,您可以将其设置为gridview。

$int="20151205";
$day = substr($int,-1,2);
$month = substr($int,-4,2);
$year = substr($int,0,4);

echo $date = $day.'/'.$month.'/'.$year;

它有一些自定义图像查询的选项。