I have added a custom titlebar using the following code howeveri seem to have about 10 px spacing left and right a 2px at the bottom, is their anyway i can make the custom titlebar fit the titlbar area?

Thanks for any advice

Jonathan

customTitleSupported = requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);
        setContentView(R.layout.tab);
        Display display = getWindowManager().getDefaultDisplay(); 

        if (customTitleSupported) {
            getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE,
                            R.layout.titlebar);

            LinearLayout titlebar = (LinearLayout) findViewById(R.id.TitleBarLayOut);
            titlebar.setPadding(-2, -1, -2, -1);
            titlebar.setMinimumWidth(display.getWidth());
            GradientDrawable grad = new GradientDrawable(Orientation.TOP_BOTTOM,
                      new int[] {Color.RED, Color.YELLOW}
                    );
            titlebar.setBackgroundDrawable(grad);

            playButton = new Button(this);
            playButton.setText("Play");
            playButton.setGravity(Gravity.LEFT);

            infoButton = new Button( this );
            infoButton.setText("Info");
            infoButton.setGravity(Gravity.RIGHT);

            titlebar.addView(playButton, new LinearLayout.LayoutParams(
                      70,1));

            titlebar.addView(infoButton, new LinearLayout.LayoutParams(
                  70,1));


        }


<?xml version="1.0" encoding="utf-8"?>

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

You want to fill the background of the actual title bar - not your custom area. Try the solution here worked for me: Set title background color

link|improve this answer
feedback

You'd want to use FILL_PARENT for the width. in XML:

<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
link|improve this answer
Sorry i didnt realise my layout xml hadnt posted. i have got width set as fill parent – Jonathan Dixon Feb 25 '11 at 7:43
I don't know then. Try removing the MinWidth and padding? – Jake Basile Feb 26 '11 at 5:57
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.