Android Studio Not Loading Image When Creating New Image Asset
I'm trying to add new image assets to android studio and I have followed a couple of steps to add them correctly, but the IDE is not loading the image. I have followed these steps
Solution 1:
You can use plugin for Android Studio.
- Go to File -> Settings -> Plugins.
- Search 'Android Drawable Importer' and Install.
- Restart Android Studio.
Now you can use Batch Drawable Import in dropdown menu
You can see how to do it step by step here
or
Set "Launcher icons" in "Icon Type" in Asset Import window. This will add the images in their original color and will not be greyed out.
Solution 2:
That's expected behaviour.
Action Bar icons are flat, pictured face on, and generally greyscale, depending on the application's theme. Action Bar icons should not look three-dimensional.
In order to maintain consistency across the application's Action Bar, all Action Bar icons should use the same color palette and effects.
https://developer.android.com/guide/practices/ui_guidelines/icon_design_action_bar.html
Post a Comment for "Android Studio Not Loading Image When Creating New Image Asset"