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 7032183
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T00:54:05+00:00 2026-05-28T00:54:05+00:00

This is the most simplified version of my view. public class MyView extends View

  • 0

This is the most simplified version of my view.

public class MyView extends View {

    private int mBackgroundColor = android.R.color.white;

    @Override
    public void setBackgroundColor(int color) {
        super.setBackgroundColor(color);
        mBackgroundColor = color;
        invalidate();
    }

    @Override
    protected void onDraw(Canvas canvas) {
        canvas.drawColor(mBackgroundColor);]
        //canvas.drawColor(mBackgroundColor, Mode.CLEAR);
        //canvas.drawBitmap(mBitmap, mRectSrc, mRectDst, mPaint);
    }

}

the problem is the background color does not change when the setBackgroundColor is called from the activity. i guess i’am not seeing the obvious.

SOLVED:

took hint from nmJohn about clipRect

//Clear the screen
canvas.clipRect(0, 0, viewWidth, viewHeight, Region.Op.REPLACE);            
mPaint.setColor(mBackgroundColor);
canvas.drawRect(0, 0, viewWidth, viewHeight, mPaint);

//Draw the image
canvas.clipRect(mRectDst.left, mRectDst.top, mRectDst.right, mRectDst.bottom, Region.Op.REPLACE);
canvas.drawBitmap(mBitmap, mRectSrc, mRectDst, mPaint);

one more hint for the future seekers

please make sure that android.graphics.Color i.e hex format is supplied rather that android.R.color.[White/Black/..] took be unaware for a while.

  • 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-05-28T00:54:06+00:00Added an answer on May 28, 2026 at 12:54 am

    drawColor just sets the background color of the current clip. Try setting clipRect to the area of the canvas.

    Also, make sure your view is actually getting invalidated, otherwise onDraw will not get called.

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

Sidebar

Related Questions

Given this highly simplified example: abstract class Animal { } class Dog : Animal
I have the following C++ code (simplified version): class Shape { bool isCircle =
This most be the second most simple rollover effect, still I don't find any
I am having this most annoying issue when I try to rebuild my solution
This is most likely not an easy one but here is the situation: I
I know this is most-likely a simple question but when you restore a database
This is actually a non-critical question, but I get this warning most of the
I'm pulling in xml using the cocoa NSXmlParser. Since this process most likely won't
I know I can do most of this by hacking Trac and using Git
I think I've settled on this as the most simple and unit-testable method for

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.