我们都知道利用代码
Intent intent = new Intent(Intent.ACTION_GET_CONTENT, null);
intent.setDataAndType(MediaStore.Images.Media.EXTERNAL_CONTENT_URI,
IMAGE_UNSPECIFIED);
startActivityForResult(intent, PHOTOZOOM);
可以实现弹出系统的相册选择activity,
本人想实现不让这个activity弹出,自动选择某张照片功能,或说自动获取Uri uri功能.
请高手们给点思路.
Intent intent = new Intent(Intent.ACTION_GET_CONTENT, null);
intent.setDataAndType(MediaStore.Images.Media.EXTERNAL_CONTENT_URI,
IMAGE_UNSPECIFIED);
startActivityForResult(intent, PHOTOZOOM);
可以实现弹出系统的相册选择activity,
本人想实现不让这个activity弹出,自动选择某张照片功能,或说自动获取Uri uri功能.
请高手们给点思路.
解决方案
20
说的 不是很清楚,
想遍历相册呗?
使用 LoaderManager.
部分代码:
设置一个回调
public class Callbacks implements LoaderManager.LoaderCallbacks<Cursor>
调用,开始加载
getSupportLoaderManager().initLoader(LOADER_ALL, null,callbacks);
或 知道 在哪个文件夹的话 直接去找也可以
想遍历相册呗?
使用 LoaderManager.
部分代码:
设置一个回调
public class Callbacks implements LoaderManager.LoaderCallbacks<Cursor>
调用,开始加载
getSupportLoaderManager().initLoader(LOADER_ALL, null,callbacks);
或 知道 在哪个文件夹的话 直接去找也可以