我在目标 Activity 中也有-6ren">
gpt4 book ai didi

Android - 自定义标题栏

转载 作者:行者123 更新时间:2023-11-29 14:07:06 24 4
gpt4 key购买 nike

我想为 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>

我在目标 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);
...
}

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

我错过了什么吗?

谢谢!

最佳答案

根据 this article ,您应该为此创建一个自定义样式。看看它是否适合您。

关于Android - 自定义标题栏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6202748/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com