Skip to content Skip to sidebar Skip to footer

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.

  1. Go to File -> Settings -> Plugins.
  2. Search 'Android Drawable Importer' and Install.
  3. Restart Android Studio.

Now you can use Batch Drawable Import in dropdown menu enter image description here

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"