2

我想为 Android 应用程序自定义标题栏。我有以下布局:

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

我在目标活动中也有以下代码:

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);
        ... 
}

我不明白为什么更改android:layout_height值时标题栏的高度不会改变。

我错过了什么?

谢谢!

4

3 回答 3

1

根据这篇文章,您应该为此创建一个自定义样式。看看它是否适合你。

于 2011-06-01T14:31:11.787 回答
0

将 layout_height 设置为线性布局的 wrap_content 或 fill_parent

然后试试

于 2011-06-01T14:29:48.260 回答
-1

您可以使用 :

getWindow().setLayout(50, 50);

当然这段代码用于设置窗口的宽度和高度

于 2016-01-15T21:54:48.567 回答