Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to track opened file(s) in Android Studio?

I am fairly new to Android Studio. In visual studio, there is a functionality to track opened files. i.e if i have a file named usercontrol.ascx opened in the right pane, then in the left pane, where the source tree is, it will high-light the file in Solution explorer.

Does such functionality exist in Android Studio? I poked around the IDE, and doesn't seem to find it?

Please advise.

like image 304
doglin Avatar asked Jun 25 '15 15:06

doglin


People also ask

How do I find recently opened files on Android?

On your Android 10 device, open the app drawer and tap the icon for Files. By default, the app displays your most recent files. Swipe down the screen to view all your recent files (Figure A). To see only specific types of files, tap one of the categories at the top, such as Images, Videos, Audio, or Documents.

Where are files saved in Android Studio?

Android Studio stores the projects by default in the home folder of the user under AndroidStudioProjects. The main directory contains configuration files for Android Studio and the Gradle build files. The application relevant files are contained in the app folder.

How do I access files in Android Studio?

Right-click on a file or directory to create a new file or directory, save the selected file or directory to your machine, upload, delete, or synchronize. Double-click a file to open it in Android Studio. Android Studio saves files you open this way in a temporary directory outside of your project.


1 Answers

You don't have the same options directly. But there are several hotkey which can help you.

Ctrl + E

It opens list of recently activated files.

Ctrl + N

Enter class name for fast navigation

Ctrl + Alt + Left Arrow

To return to previous edit place in the same file or any other file.

Also check out Navigation dropdown menu in AndroidStudio.

Hope it helps! Also check Anil Meenugu answer

like image 148
Konstantin Kiriushyn Avatar answered Sep 24 '22 21:09

Konstantin Kiriushyn