The colored image turned to have no color and just a grey vector in drawable?

坚强是说给别人听的谎言 提交于 2019-11-27 10:47:30

问题


I have created a new Image Assets in the Drawable cus I need to insert a new image in my app, but every time I create a new image asset, the output turns to be no colour at all. I've attached the pic of it.

It's confusing and whenever I import it in my layout, it's just grey all over as you can see in the image. Why is it cus I can't find any ready solutions? Let me know if I'm overlooked.


回答1:


I got the answer for my own question which I find it's useful for some who still do not know how to enable the Batch Drawable Import. It's easy and just need to download plugin and install. I've read that the latest version already has it and I've downloaded and reinstalled, but it didn't show as what I was expecting. The solution is to download and install it.

  1. First, In Android Studio, go to Default Setting File --> Setting or you can simple Click the SDK Manager Icon

  2. In the Default Setting, go to Plugins

  3. In the search option, type Batch Drawable Import and you'll see there's Android Drawable Importer.

  4. In my image, it's already installed, Click Install Plugin and just follow the instructions.

  5. You'll have to restart Android Studio and try to create a new Batch Drawable Import and you'll find it there. ;) Thanks.




回答2:


While creating a new asset in the drawable folder you need to set the

"Launcher icons"

in the

"Asset Type "

drop down

This will add the images in their original color and will not be greyed out. Also it is possible it adds the images in res/mipmap folder. You can move the images from mipmap folder to anywhere you want.




回答3:


When you create a Image Asset as Action bar and Tab icons in the newer version of Android Studio(2.2) it is automatically converted into grey scale,Choose theme from the drop down default is HOLO LIGHT choose custom and you could be able to give the color code,but this works only for sketches kinda images To get color code




回答4:


I Found the proper solution! You just have to add this code where you created your NavigationView object!

    NavigationView navigationView = (NavigationView) findViewById(R.id.nav_view);
    //add the line below and your icon will display as your .svg file
    navigationView.setItemIconTintList(null);
    navigationView.setNavigationItemSelectedListener(this);


来源:https://stackoverflow.com/questions/36143020/the-colored-image-turned-to-have-no-color-and-just-a-grey-vector-in-drawable

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!