6

カスタムタイトルバーを作りました。タイトル バーには、2 つのイメージビューが隣り合っており、その下に 1 つのテキストビューがあります。正常に動作しますが、テキストビューの上部しか表示されません。そのため、タイトルバーの下側が切り取られていると思います。カスタム タイトル バーの高さを設定する方法を知っている人はいますか? 編集:私のカスタム タイトル バー:

<?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>  
4

3 に答える 3

8

使用スタイル:

 <style name="CustomTheme" parent="@android:style/Theme.Light">
    <item name="android:windowTitleSize">30dp</item>
</style>

そしてマニフェストに追加します:

 <activity
        android:name=".MainActivity"
        android:theme="@style/CastomTheme" >
 </activity>
于 2012-07-20T11:59:17.410 に答える
1

タイトルバーは何らかのレイアウト内にあると想定しているため、できることは、レイアウトの高さを設定することです。次に例を示します。

android:height="30dp"

テキストビューにパディングを提供することもできます。次に例を示します。

android:paddingBottom="10dp"

これにより、テキストが表示されるようになります。お役に立てれば。

于 2012-06-02T18:08:50.067 に答える
0

問題は、android:layout_height="45dip"外側の LinearLayout に指定したものにあると思います。その行を次のように置き換えてandroid:layout_height="wrap_content"ください。これで問題が解決すると思います。

于 2012-06-02T19:34:03.397 に答える