Android установил высоту пользовательской строки заголовка

Я сделал специальную строку заголовка. В строке заголовка находятся два изображения рядом друг с другом и одно текстовое изображение под ним. Он отлично работает, но я вижу только верхнюю часть текстового представления. Поэтому я думаю, что строка заголовка обрезается снизу. Кто-нибудь знает, как установить высоту пользовательской строки заголовка? РЕДАКТИРОВАТЬ: Моя пользовательская строка заголовка:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="45dip"
    android:orientation="vertical"
    android:id="@+id/header_root"> 
<RelativeLayout 
    android:layout_width="match_parent"
    android:layout_height="wrap_content">
<ImageView
    android:id="@+id/header_image"
    android:layout_width="wrap_content"
    android:layout_height="27dip"
    android:src="@drawable/header_image"
    />

<ImageView
    android:id="@+id/options"
    android:layout_width="wrap_content"
    android:layout_height="27dip"
    android:layout_margin="-8dip"
    android:layout_toRightOf="@+id/header_image"
    android:src="@drawable/options" />

</RelativeLayout>
<TextView 
    android:text="Vissenencyclopedie"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:gravity="center"
    android:textSize="15dp"
    android:id="@+id/titel"
    android:layout_marginTop="-7dip"
    />
</LinearLayout>  
5
задан Simon 2 June 2012 в 19:05
поделиться