Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to get to the file explorer in android studio

Okay I don't know how to get to the file explorer in android studio. I already tried searching stack overflow and I found the same question I am asking but the solution there didn't work. So with screen shots could someone tell me how to get to the file explorer?

like image 630
user3843164 Avatar asked Aug 17 '14 23:08

user3843164


People also ask

How do I open an Explorer file in Android Studio?

Select a device from the drop down list. Interact with the device content in the file explorer window. 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.

How do I access files in Android Studio?

In Android Studio 3.5. 3, the Device File Explorer can be found in View -> Tool Windows. It can also be opened using the vertical tabs on the right-hand side of the main window.

Is there a file explorer for Android?

Google's Files app helps keep your phone from running out of storage and makes it super-simple to share files with other devices where the app is installed. All in all, Files by Google is a well-rounded and intuitive file manager that handles all the file management tasks most business users will need on a phone.

How do I open file explorer in Android programmatically?

Intent intent = new Intent(Intent. ACTION_GET_CONTENT); intent. setType("*/*"); Intent i = Intent. createChooser(intent, "View Default File Manager"); startActivityForResult(i, CHOOSE_FILE_REQUESTCODE);


1 Answers

For Android Studio 0.8.6, go to Tools > Android > Android Device Monitor in the main menu, to bring up the Android Device Monitor in a separate window. There you will find what amounts a set of Eclipse perspectives, notably the DDMS perspective, which has the File Explorer view.

like image 190
CommonsWare Avatar answered Oct 20 '22 06:10

CommonsWare