gpt4 book ai didi

android - 标题栏颜色变化问题

转载 作者:行者123 更新时间:2023-11-30 04:08:55 25 4
gpt4 key购买 nike

我想动态改变标题栏的颜色,即:有人点击一个按钮,它改变了颜色。但是,我似乎无法让它填满整个标题栏。这发生在模拟器和 Nexus One 上。有什么想法吗?

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/title_bar" android:background="@color/title_bar_blue" android:layout_width="fill_parent" android:layout_height="fill_parent">
<TextView android:id="@+id/title_left_text" android:layout_alignParentLeft="true" style="?android:attr/windowTitleStyle" android:layout_width="wrap_content" android:layout_height="wrap_content"/>
<TextView android:id="@+id/title_right_text" android:layout_alignParentRight="true" style="?android:attr/windowTitleStyle" android:layout_width="wrap_content" android:layout_height="wrap_content"/>
</RelativeLayout>

    requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);
setContentView(R.layout.main);
getWindow().setFeatureInt(Window.FEATURE_CUSTOM_TITLE, R.layout.custom_title);

titleBar = (RelativeLayout) findViewById(R.id.title_bar);
titleBar.setBackgroundResource(R.color.title_bar_green);

title bar

最佳答案

试试这个 ((View) titleBar.getParent()).setBackgroundColor(R.color.title_bar_green);这不是完成这项工作的最佳方式。但如果它有效,那么您就会知道您需要设置 R.id.title_bar 父级的背景颜色。

关于android - 标题栏颜色变化问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11146359/

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