I want to customize the title bar for an Android application. I have the following layout:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="horizontal"
    android:layout_width="fill_parent"
    android:layout_height="80dp" <!-- Problem here -->
    android:gravity="center_vertical"
    >

    <ImageView
        android:id="@+id/header"
        android:background="@drawable/windowtitle"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"/>

</LinearLayout>

I also have a the following code in the targeted activity:

public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);
        setContentView(R.layout.home);
        getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE, R.layout.window_title);
        ... 
}

I don't understand why the height of the title bar doesn't change when changing the android:layout_height value.

Did I miss something?

Thanks!

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

According to this article, you should create a custom style for this. See if it works for you.

link|improve this answer
Actually, I have read it and I applied what's in there... Although I don't understand why we need to provide a custom style given we have the window_title layout. What does the custom_style add to the equation? – Amokrane Chentir Jun 1 '11 at 14:55
feedback

set the layout_height as wrap_content or fill_parent of the linear layout

and then try it

link|improve this answer
I want to set a custom height. Also when providing an image background, the image is streched to fill up the width so the proportions are not the same as the original one. – Amokrane Chentir Jun 1 '11 at 14:59
feedback

Your Answer

 
or
required, but never shown

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