标题栏颜色变化问题

时间:2012-06-21 20:38:33

标签: android

我想动态更改标题栏的颜色,即:有人点击按钮,它会改变颜色。但是,我似乎无法让它填满整个标题栏。这在模拟器和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

2 个答案:

答案 0 :(得分:1)

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

答案 1 :(得分:0)

试试这个

titleBar = (RelativeLayout) findViewById(R.id.title_bar);
final FrameLayout titleContainer = (FrameLayout)titleBar.getParent(); 
 titleContainer.setPadding(0, 0, 0, 0)
titleBar.setBackgroundResource(R.color.title_bar_green);