以编程方式更改@drawable xml中的LAYOUT颜色

时间:2013-04-21 00:53:41

标签: android

我已经阅读了很多关于以编程方式更改drawable颜色的问题,但它们似乎与实际布局无关。当我尝试这个时:

RelativeLayout firstWord = (RelativeLayout)getActivity().findViewById(R.id.topBG);
Drawable layoutBG = firstWord.getDrawable();
firstWord = buttonBackground.mutate();
firstWord.setColorFilter(0xFFFF0000,Mode.MULTIPLY);

我收到此错误:

  

对于RelativeLayout类型

,方法getDrawable()未定义

我使用了一个drawable来给我的布局圆角,但应用程序的一部分是每次点击都会改变背景颜色,所以我需要知道如何更改代码中的颜色。

在搬到drawable之前,我正在使用:

firstWord.setBackgroundColor(color);

这是我的绘画:

round_corners.xml

<shape 
    xmlns:android="http://schemas.android.com/apk/res/android">

    <stroke 
        android:width="1dp" 
        android:color="#000000" />

    <padding 
        android:left="1dp" 
        android:top="1dp"
        android:right="1dp" 
        android:bottom="1dp" />

    <corners 
        android:radius="25dp" />

</shape>

这是我的布局xml:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".VulgarActivity" 
    android:id="@+id/bottomBG"
    android:background="#ffffff"
    >
    <View
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:background="@drawable/drop_shadow"
        >
    </View> 
    <RelativeLayout
        android:id="@+id/topBG"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_marginRight="10dp"
        android:layout_marginBottom="10dp"
        android:layout_marginLeft="10dp"
        android:layout_marginTop="10dp"
        android:background="@drawable/round_corners" 
        >
    <TextView
        android:id="@+id/leftWord"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:layout_centerVertical="true"
        android:text="Push"
        android:textColor="#ffffff"
        android:textSize="50sp" 
        android:shadowColor="#080808"
        android:shadowRadius="10.0"
        android:shadowDx="5"
        android:shadowDy="5"
        />
    </RelativeLayout>

</RelativeLayout>

提前感谢您提供任何帮助:)

只是一个想法:

我可以将“round_corners.xml”中的颜色值更改为@color参考(例如:

android:color="@color/switcher"

并将其放入值

中的'color'文件夹中
<color name="switcher">#000000</color>

以这种方式以编程方式更改颜色会更容易吗?

1 个答案:

答案 0 :(得分:0)

你可以使用这些线,我可以在第二行获得背景:

RelativeLayout firstWord = (RelativeLayout)getActivity().findViewById(R.id.topBG);
Drawable layoutBG = firstWord.getBackground();
buttonBackground = buttonBackground.mutate();
buttonBackground.setColorFilter(0xFFFF0000,Mode.MULTIPLY);