我有这个代码,可以将所有照片保存在手机上。
String[] projection = {MediaStore.Images.Media._ID,MediaStore.Images.Media.DATA};
final Cursor cursor = context.getContentResolver().query(MediaStore.Images.Media.INTERNAL_CONTENT_URI,
projection,
null,
null,
null);
return cursor.getCount();
当我尝试在模拟器或手机上使用它时,我总是将光标的大小设置为 0。任何指针都会有所帮助。
我真的不知道如何在模拟器上进行测试。
我有以下权限
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
谢谢