Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialAdel Fatkhutdinov
1,697 PointsProblems in Android Studio...
When doing this lesson in Android Studio 1.1.0, I've come up with this kind of problems: 1) There is no qualified drawable folders. There is only one drawable folder with no qulifier. 2) Drag and drop to that folder doesn't work.
Any ideas, about these? Ben Jakuben
Thanks in advance!
3 Answers
Angel Viera
3,293 PointsI think I know this one.
As far as I know, any new drawables that you want to add will need to be added from the "Packages" view or going directly to the folder in Finder/Explorer.
I'll explain. Android Studio 1.1.0 behaves like this now (not sure if earlier versions do this):
If you are in the "Android" view of your project tree, it will not show an empty resource sub-folder. Even if you create a new one, it will not appear because it is empty. Not sure if this is intentional, or an Android Studio bug. (It's certainly a UX "bug"). It will still appear if you change to the "Packages" view of your project tree, like this:
Also in the "Android" view, if you have an image in different sizes, it will show them all grouped together by image. So it will look like this now:
even though my actual folder structure still separates them by density:
Hope this helps.
Adel Fatkhutdinov
1,697 PointsHow did you organise this? If I copy the dowloaded folders into my drawable folder, it doesn't group them anyhow( I can't even access the picture from "@drawable" if the picture is in another folder in drawable, like drawable-hdpi. Angel Viera
Andre Colares
5,437 PointsHere is the main.xml for correct function at Android Studio 1.4
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:yourapp="http://schemas.android.com/apk/res-auto">
<item android:id="@+id/action_edit_friends"
android:title="@string/menu_edit_friends_label"></item>
<item android:id="@+id/action_logout"
android:title="@string/menu_logout_label"></item>
<item android:id="@+id/action_camera"
android:icon="@drawable/ic_action_camera"
android:title="@string/menu_camera_label"
yourapp:showAsAction="ifRoom"
></item>
</menu>