gpt4 book ai didi

android - 自定义窗口标题栏并隐藏默认标题栏

转载 作者:行者123 更新时间:2023-11-29 02:00:49 25 4
gpt4 key购买 nike

您好,我已经为我的 Android 应用程序创建了自己的自定义窗口标题栏,但现在每次我打开该应用程序时,我都会看到默认标题栏一秒钟,但我尝试放置透明背景,但不起作用,这是我的代码:

custom_title.xml: 
<resources>
<style name="CustomWindowTitleBackground">
<item name="android:background">@android:color/transparent</item>
</style>

<style name="CustomTheme" parent="android:Theme">
<item name="android:windowTitleSize">35dip</item>
<item name="android:windowTitleBackgroundStyle">@style/CustomWindowTitleBackground</item>

</style>

任何帮助我不胜感激,非常感谢。

最佳答案

您尝试全屏 Activity 吗?还是为您的 Activity 使用 noTitleBar 主题?然后为 Activity 创建一个具有子布局的布局,看起来像您的自定义标题栏,它排在第一位。例如,您的布局可能如下所示:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" 
android:layout_width="fill_parent" android:layout_height="fill_parent">
<your custom title bar/>
<your main layout/>

</LinearLayout>

因此,当您的 Activity 为用户建议时,默认标题栏不可见,您的自定义布局(包含在您的布局中)显示为标题栏。

关于android - 自定义窗口标题栏并隐藏默认标题栏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12774904/

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