Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

recovery the deleted Xml file from app in android

Is it possible to recover a deleted XML file from app in Android IDE?

Unfortunately I deleted important files from my app.

like image 394
prakash Avatar asked Apr 21 '14 13:04

prakash


People also ask

Can you bring back deleted files on Android?

Open the Google Drive app. Swipe from left to right, and select Trash. If you see a file you wish to restore, select the 3-dot menu for that file. Select Restore from the menu.


2 Answers

For Eclipse:

To restore a deleted Workbench resource with a state from the local history:

  1. In one of the navigation views, select the folder or project into which you want to restore a local history state
  2. From the resource's pop-up menu, select Restore from Local History.... The Restore From Local History dialog opens showing all files that were previously contained in the selected folder or project and all of their sub-folders.
  3. Check the files that you want to restore
  4. If you don't want to restore just the last state of a file you can select any other state of the file from the Local History list on the right hand side of the dialog. The bottom pane of the dialog shows the contents of the state.
  5. If you are done with all files click Restore.

(Source)

For Android Studio / IntelliJ / AppCode:

  1. Go to the Project tool window and right-click the project node or just a folder, where the file used to exist
  2. On the context menu, choose Local History, and click Show History on the submenu
  3. The local history view for a project or folder shows you everything that you have done during the last few days. In the Action column of the lower part of the dialog box, select the action you want to roll back. In our case, this is the Deleting action. So doing, the upper part of the dialog box shows the tree view of changed files.
  4. If you want to restore the deleted file only, regardless of the other changes that have been done since then, you can select the file Lost.txt in the tree view and click the Revert button on the upper toolbar. The file will be restored silently.

(Source)

like image 184
Tom Avatar answered Oct 02 '22 15:10

Tom


UPDATED SHORT ALTERNATIVE:

Android Studio:

  1. Go to Project Window tool
  2. Expand res folder
  3. Right click on layout and Place cursor on Local History (it is perhaps the 5th or 6th last option)
  4. Select Show history

here we have all the past versions available, right click a version which you want to roll back and select Revert!

like image 35
Salman Anjum Avatar answered Oct 02 '22 15:10

Salman Anjum