0

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

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

我收到此错误:

对于 RelativeLayout 类型,方法 getDrawable() 未定义

我使用了一个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 name="switcher">#000000</color>

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

4

1 回答 1

0

你能用这些线代替吗,我在第二行得到背景可绘制:

RelativeLayout firstWord = (RelativeLayout)getActivity().findViewById(R.id.topBG);
Drawable layoutBG = firstWord.getBackground();
buttonBackground = buttonBackground.mutate();
buttonBackground.setColorFilter(0xFFFF0000,Mode.MULTIPLY);
于 2013-04-21T01:20:19.483 回答