Android studio show only basic files

android, android-studio

Solution

You can choose different filtering for the Packages view by using the popup in the view's title bar:

which will hide some of the project-level build files and such. However, you're still going to see a number of resource folders; as others have commented, this comes with the territory when doing native Android development. You can start reading about how the resource system works by looking here.

Problem

I used to code my android apps in Xamarin studio where you have nothing more than resources files, class files and activity classes. (In the solution explorer) Now I switched to Android studio and I can barely find the stuff I am looking for. I mean there are so many different things on my project explorer it's a real mess. I'm sure all these options are very useful but I prefer a clean interface and to look for these options when I need them. Is there a way in Android studio to see only the mandatory files like I would in Xamarin ? My current view :

Original source