Android Studio: Newly Created Directory Not Appearing In Folders View

AndroidAndroid LayoutAndroid Studio

Android Problem Overview


I am trying to create a new folder inside the /res directory

I added a new directory

enter image description here

The folder does not appear in the /res folder even though it exists in the finder

enter image description here

Case and point I tried adding the folder again and I got a message telling me it exists.

enter image description here

If you can suggest what I can do to fix this I'd love it!

(And yes I have restarted the program as well as my computer)

Android Solutions


Solution 1 - Android

Turns out there is a selector at the top which, by default, is set to show Android. If you flick the toggle down to 'Packages' you can see your own packages.

enter image description here

Solution 2 - Android

In Android Studio you can add new directories by right clicking the resource folder in the Android view. (Don't get confused by the New Directory option.)

For example, if you want a new layout resource file and folder then right click layout and choose New > Layout resource file.

enter image description here

If you want a new layout-sw600dp for the activity_main.xml file then choose Smallest Screen Width from the list and click the >> button. Fill in the file name and width and click ok.

enter image description here

Android Studio will automatically create the layout-sw600dp directory and in the Android view you will have both layout files conveniently displayed next to each other.

enter image description here

It is a similar process for adding other resource directories and files (see my other example).

Solution 3 - Android

Browse the actual folder structure in windows and you'll see the folder. Put the same resource file found in the normal drawable folder into this new directory. Then when you go back into Android Studio you'll now see 2 files under the NORMAL \res\drawable structure. Make sure you don't look for a subfolder in Android Studio called "drawable-sw600dp" because you won't find it other than in windows explorer. What you will find in Android Studio (after you copy the resource file) is a new resource file along with your original called "jenny-web.png (sw600dp)" or something similar. This same principle resolves the same error when working with other resources like layouts.

Solution 4 - Android

Clicking at TAB Android in top, select the perspective Project Files. Then u can see all folders of project. enter image description here

Solution 5 - Android

For Android Studio 3.0, those who are following https://developer.android.com/training/basics/supporting-devices/languages.html and have encountered the same issue as the one stated in this question, you can also do the following aside from the above answers which are helpful.

  1. Right click to the target folder (i.e. res folder) > New
  2. Choose Android Resource File
  3. Specify the file name, and in the Directory name field put the folder name you want to create or the existing folder you want to put the resource file.

enter image description here

After hitting OK, in the Project files dropdown, you will see the correct strucutre.

enter image description here

And in the Android dropdown, you will see it as part of the strings.xml under values folder.

enter image description here

Solution 6 - Android

Android 4.0

The Android view by default seems to conceal the duplicated resource type directories in the side panel.

If you want to view the duplicate resource type directories i.e. drawable for two different languages,

switch the view from "Android" to "Packages" or "Project" or "Project Files"

enter image description here

Solution 7 - Android

This worked best for me. What I did was I right-clicked the 'app' directory and chose 'New' >> 'Android Resource File'. After that I filled in the File Name with 'strings'. Chose 'XML' as my resource type and my Directory Name was 'values-b+za+ZA'.

This created everything as I wanted it to, however, values-b+za+ZA, still didn't show in the Android view but it shows in the Package view. (The views you choose from the top dropdown.)

The difference this time is that in the Package view I can still see my new 'strings.xml' file and in the Android view I van also see the new 'strings.xml' file.

I guess android studio doesn't show custom directories in the Android view but creates like some kind of link to the true directory when working with it. I am not familiar with Android Studio at all but this did work for me. If there are more professional answers please feel free to correct me.

Solution 8 - Android

You most probably have the file named in Uppercase, Android Studio does not recognize file names in Uppercase, I had made this mistake a while back.

Solution 9 - Android

As the developer doc states: > be sure the Project window is open (select View > Tool Windows > Project) > and the Android view is selected from the drop-down list at the top of that window.

You will then be able to see all relevant project files (including new ones) in a more efficient way.

Hope it helps someone.

Solution 10 - Android

This is odd but in my case i had to many underscores delimiters.

When i renamed yt_search_view (2 delimiters) to yt_searchview (1 delimiter), it appear in project view where it should be. It is probably a bug. My version is Android Studio 3.2.

Also, i notice that if i add a value folder to the layout folder, it also fix the issue.

Example:

layout_control_x
 --layout
 ----top_panel.xml
 --values  <--adding this empty folder fixed the problem

For complete information on how to add sub folder layouts check this.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionAggressorView Question on Stackoverflow
Solution 1 - AndroidAggressorView Answer on Stackoverflow
Solution 2 - AndroidSuragchView Answer on Stackoverflow
Solution 3 - AndroidPost ImpaticaView Answer on Stackoverflow
Solution 4 - AndroidDiego VenâncioView Answer on Stackoverflow
Solution 5 - AndroidMarvin Glenn LacunaView Answer on Stackoverflow
Solution 6 - AndroidKandeepView Answer on Stackoverflow
Solution 7 - AndroidHercoView Answer on Stackoverflow
Solution 8 - AndroidArpan PathakView Answer on Stackoverflow
Solution 9 - AndroidPhilippe SimoView Answer on Stackoverflow
Solution 10 - AndroidMiguelSlvView Answer on Stackoverflow