Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8195223
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T05:03:53+00:00 2026-06-07T05:03:53+00:00

Is there any way to highlight tab icon image programmatically without using separate drawable

  • 0

Is there any way to highlight tab icon image programmatically without using separate drawable resource?

I tried using PorterDuffColorFilter but it doesn’t look good:

// apply a color mask to the icon to mark it as selected
int selectedIconMaskColor = view.getResources().getColor(R.color.tab_icon_selected);
PorterDuffColorFilter selectedIconFilter = new PorterDuffColorFilter(selectedIconMaskColor,
  PorterDuff.Mode.SRC_ATOP);
copyIconDrawable.setColorFilter(selectedIconFilter);

Are there any other alternatives?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-07T05:03:55+00:00Added an answer on June 7, 2026 at 5:03 am

    I ended up using simple image manipulation class:

    import android.graphics.Bitmap;
    import android.graphics.Color;
    
    /**
     * Image with support for filtering.
     */
    public class FilteredImage {
    
      private Bitmap image;
    
      private int width;
    
      private int height;
    
      private int[] colorArray;
    
      /**
       * Constructor.
       * 
       * @param img the original image
       */
      public FilteredImage(Bitmap img) {
        this.image = img;
        width = img.getWidth();
        height = img.getHeight();
    
        colorArray = new int[width * height];
        image.getPixels(colorArray, 0, width, 0, 0, width, height);
    
        applyHighlightFilter();
      }
    
      /**
       * Get the color for a specified pixel.
       * 
       * @param x x
       * @param y y
       * @return color
       */
      public int getPixelColor(int x, int y) {
        return colorArray[y * width + x];
      }
    
      /**
       * Gets the image.
       * 
       * @return Returns the image.
       */
      public Bitmap getImage() {
        return image;
      }
    
      /**
       * Applies green highlight filter to the image.
       */
      private void applyHighlightFilter() {
        int a;
        int r;
        int g;
        int b;
        for (int x = 0; x < width; x++) {
          for (int y = 0; y < height; y++) {
    
            int c = getPixelColor(x, y);
    
            a = Color.alpha(c);
            r = Color.red(c);
            g = Color.green(c);
            b = Color.blue(c);
    
            r = (int) (r * 0.8);
            g = (int) (g * 1.6);
            b = (int) (b * 0.8);
    
            if (r > 255) {
              r = 255;
            }
            if (r < 0) {
              r = 0;
            }
            if (g > 255) {
              g = 255;
            }
            if (g < 0) {
              g = 0;
            }
            if (b > 255) {
              b = 255;
            }
            if (b < 0) {
              b = 0;
            }
    
            int resultColor = Color.argb(a, r, g, b);
            image.setPixel(x, y, resultColor);
          }
        }
      }
    
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there any way we can fetch X509 Public Cetrificates using c# from AD
Is there any way I can get Eclipse to highlight the use of the
Is there any way i can make my listactivity (rather listview) highlight the List
Is there any way to highlight javascript syntax by eclipse (pdt) in a phtml
Is there any way to highlight certain keywords like TODO in comments? I used
Is there any way to Highlight Properties/Functions on your custom classes in intellisense? It's
How we can highlight selected row in a table using css. Is there any
Is there any way to tell Netbeans to highlight PHP code in HTML files?
I'm using jQuery.append() to add some elements dynamically. Is there any way to get
Is there any way I can get my Python code syntax highlighted in Microsoft

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.