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

  • Home
  • SEARCH
  • 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 8849107
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T12:33:54+00:00 2026-06-14T12:33:54+00:00

I want to make an if statement in which I will compare the color

  • 0

I want to make an if statement in which I will compare the color of my layout background color, something like this:

 RelativeLayout screen = (RelativeLayout) findViewById (R.id.screen);
 if(screen.getBackgroundColor() == "#FFFFFFFF"){
    //do something...
 }
 else{
   //do something else...
 }

I can’t find out how to get the background color. I am setting the color by: screen.setBackgroundColor(Color.parseColor("#000000"));

  • 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-14T12:33:55+00:00Added an answer on June 14, 2026 at 12:33 pm

    There’s no direct getBackgroundColor(), but if you really need to know the color value, you should retrieve view’s Paint object and get color from it:

    Paint viewPaint = ((PaintDrawable) view.getBackground()).getPaint();
    int colorARGB = viewPaint.getColor();
    

    Note this contains alpha as well, so be careful with your comparison (or get rid of alpha if you just need to compare RGB:

    int colorRGB = colorARGB & 0x00ffffff;
    

    This will work on all API levels.

    EDIT

    As for the comparision – once you got color retrieved you can use Color.parseColor() and compare the result usual way:

    if( colorRGB == Color.parseColor("#ffffff") ) {
       // matches...
    }
    

    or same with ARGB:

    if( colorARGB == Color.parseColor("#ffffffff") ) {
       // matches...
    }
    

    And if you are doing this frequently (like in. list adapter) I’d parse it once and store the results for reuse.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to make many inserts in a single SQL statement, pretty much like
I know the AST I want to make (I think), which is: ^( STATEMENT
I have views which look something like this: mysql> select * from p2; +---+---------+---------+
Basically I want to make an if statement that only shows the date of
I want make a bash script which returns the position of an element from
and I am tearing my hair out!! Even something simple like this work: procedure
I have a repeated line which outputs something like: Call John Jones in -3
Ultimate Goal Is to make something like Magento offers - basically a logic builder,
I am having a difficulty when trying to make an if-statement with $(this).attr(id) .
I want make datetimepicker in my project. Using jquery how it is possible? I

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.