ContentProviderPaging/app/src/main/java/com/example/android/contentproviderpaging/ImageProvider.java [232:238]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        int len = ar.length();
        int[] resIds = new int[len];
        for (int i = 0; i < len; i++) {
            resIds[i] = ar.getResourceId(i, 0);
        }
        ar.recycle();
        return resIds;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



StorageProvider/Application/src/main/java/com/example/android/storageprovider/MyCloudProvider.java [603:609]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        int len = ar.length();
        int[] resIds = new int[len];
        for (int i = 0; i < len; i++) {
            resIds[i] = ar.getResourceId(i, 0);
        }
        ar.recycle();
        return resIds;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



