在android中有没有其他方法可以查询/加载本Map像?

yvt65v4c  于 2021-07-03  发布在  Java
关注(0)|答案(1)|浏览(345)

我正在尝试在网格视图中显示本Map像。我希望它加载得更快。因此,我不想获取图像并立即加载它们,而是希望它们按组加载。
那么,除了下面的代码之外,android中还有其他方法可以查询/加载本Map像吗?

Cursor cursor = context.getContentResolver()
                       .query(MediaStore.Images.Media.EXTERNAL_CONTENT_URI,  
                              mProjection, null, null, 
                              MediaStore.Images.Media.DATE_ADDED + " DESC");
dzjeubhm

dzjeubhm1#

试试滑翔

Glide.with(imageView.getContext())
                        .load(/*file.jpg/png, drawable, url*/)
                        .placeholder(R.drawable.placeholder)// you can remove this line
                        .dontAnimate()
                        .into(imageView);

在gradle(模块:应用程序)中添加以下内容:

dependencies {
  implementation 'com.github.bumptech.glide:glide:4.11.0'
  annotationProcessor 'com.github.bumptech.glide:compiler:4.11.0'
}

相关问题