Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a custom View that dynamically builds child views, populates them with data, and renders them to the canvas via the OnDraw() method. So far, I've been able to draw BitmapDrawables and ShapeDrawables using setBounds(), and TextViews using layout() without any problems. All of the child views are positioned correctly on the canvas.

Now I'm trying to add a ProgressBar at the same position as the BitmapDrawables (image lazy load), but ProgressBar.layout() doesn't seem to be honored during OnDraw(). If I set a breakpoint and check all of the properties at runtime, the width, height, and position (left, top, right, bottom) are all correct. However, the view is drawn full screen, similar to an XML file that includes a ProgressBar set to FILL_PARENT.

I even tried an isolated test within a separate Activity (see code below) just to ensure that nothing in my current activity was conflicting with the ProgressBar somehow, but I got the same result.

What am I doing wrong? Any guidance is appreciated.

public class MyActivity extends Activity {

    private ProgressBar pb;

    @Override
    protected void onStart() {
        super.onStart();

        RelativeLayout r = new RelativeLayout(getBaseContext()) {

            @Override
            protected void onDraw(Canvas canvas) {

                pb.draw(canvas);

                super.onDraw(canvas);

            }

        };

            //ENSURES I CAN DISTINGUISH BETWEEN CANVAS AND PROGRESSBAR
        r.setBackgroundColor(Color.GRAY);

        pb = new ProgressBar(getBaseContext());

            //SHOULD DISPLAY A RECTANGLE JUST SLIGHTLY OFF 0,0
            //BUT RENDERS FULL SCREEN INSTEAD... WHY?
        pb.layout(200, 100, 400, 300);

            //ENSURES I CAN SEE PROGRESSBAR'S ENTIRE WIDTH AND HEIGHT
            pb.setBackgroundColor(Color.RED);


        setContentView(r);

    }

}

This is what I see. Note that the ProgressBar is located at 0,0 even though I positioned it with specific parameters. The background color also tells me that it's stretched to fill the entire canvas.

ProgressBar positioned incorrectly at 0,0 with incorrect width & height

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.