+       private void onSuccessfulRemoteDeletion(RemoveRemoteFileOperation operation, RemoteOperationResult result) {
+               startRefresh();
+               TextView progressView = (TextView) findViewById(R.id.upload_progress);
+               if (progressView != null) {
+                       progressView.setText("0%");
+               }
+       }
+
+       @SuppressWarnings("deprecation")
+       private void onSuccessfulDownload(DownloadRemoteFileOperation operation, RemoteOperationResult result) {
+       File downFolder = new File(getCacheDir(), getString(R.string.download_folder_path));
+       File downloadedFile = downFolder.listFiles()[0];
+       BitmapDrawable bDraw = new BitmapDrawable(getResources(), downloadedFile.getAbsolutePath());
+       mFrame.setBackgroundDrawable(bDraw);
+       }