How to change icon colors in android studio

后端 未结 5 909
一个人的身影
一个人的身影 2021-02-05 04:32

I downloaded some icons from material.io but they only offer the icons in black. I saw a youtube video where they use to allow you to choose the color. Anyway, I am trying to

相关标签:
5条回答
  • 2021-02-05 05:01

    As mentioned before, the material.io icons can be downloaded directly with Android Studio. This solution shows the importing of vector asset icons which are easier to manage since they are stored in a single location (res/drawable) vs. image assets that will have each icon stored in specific density folders (hdpi, xhdpi, etc).

    1. expand the "res" folder
    2. right click drawable
    3. hover over "new"
    4. select "Vector Asset"

    1. click the image next to "icon"
    2. select desired material.io icon
    3. Name the icon what you would like
    4. select "next"

    Now you will have two options of setting the icon color

    1. In the layout by using the android:tint attribute of an ImageView. This is my preference because the icon can be viewed prior to runtime.

    or

    1. In Java.

    imageView.setColorFilter(ContextCompat.getColor(context, android.R.color.white), PorterDuff.Mode.MULTIPLY);

    0 讨论(0)
  • 2021-02-05 05:04

    You can download white icons from material.io. also look at themes and theme overlays

    0 讨论(0)
  • 2021-02-05 05:06

    simply you can use

    android:tint="@android:color/white"

    0 讨论(0)
  • 2021-02-05 05:22

    https://material.io/icons/ actually does let you download icons in white.

    But, depending on what exactly you want to do, there are a few options. If you simply want white icons (and not to change them at runtime), you may find this plugin for Android Studio useful: https://github.com/konifar/android-material-design-icon-generator-plugin

    It allows you to generate the material design icons right in Android Studio, in whatever color you want. Another alternative for downloading these icons in different colors is https://materialdesignicons.com/.

    If you do want to color the icons at runtime, try something like this:

    imageView.setColorFilter(ContextCompat.getColor(context, android.R.color.white), 
            PorterDuff.Mode.MULTIPLY);
    
    0 讨论(0)
  • 2021-02-05 05:26

    You can directly download these images in Android Studio.

    res > right click > New > Image Asset and select

    • Icon Type : Action Bar and Tab Icones
    • Asset Type : Clip Art
    • Theme : CUSTOM

    And you can select any clip art that you want, select the color, padding, etc ...

    0 讨论(0)
提交回复
热议问题