0

是否可以在应用程序运行时更改 Java 代码中的矩形(以 xml 绘制)颜色?

我的矩形.xml:

<?xml version="1.0" encoding="UTF-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/listview_background_shape">
    <stroke android:width="2dp" android:color="#ffffff" />
    <padding android:left="20dp"
        android:top="20dp"
        android:right="20dp"
        android:bottom="20dp" />

    <solid android:color="#006600" />
</shape>

通过以下方式在 main.xml 中绘制:

<View
    android:id="@+id/myRectangleView"
    android:layout_width="wrap_content"
    android:layout_height="100dp"
    android:background="@drawable/rectangle"/>

我试过这样:

   GradientDrawable sd;
    View viewrectangle;
    viewrectangle = (View) findViewById(R.id.myRectangleView);
    sd = (GradientDrawable) viewrectangle.getBackground();
    sd.setColor(0xffffff00);
    sd.invalidateSelf();

只有当我把它放在 OnCreate 方法中时它才有效。

我想通过一个按钮改变矩形颜色,所以我把这段代码放在按钮的 onClick() 方法中。但是当我在应用程序运行时单击按钮时,颜色不会改变。有什么建议么?

4

3 回答 3

2

使用此代码并且它有效,或者考虑使用 viewrectangle.invalidate() 重新绘制 viewrectangle,但它不应该是 nescarry:

View viewrectangle;

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);

    viewrectangle = (View) findViewById(R.id.myRectangleView);

}

public void doClick(View v) {
    GradientDrawable sd = (GradientDrawable) viewrectangle.getBackground();
    sd.setColor(0xffffff00);
    sd.invalidateSelf();
}

在本例中,“doClick()”方法在 main.xml 中设置:

<Button android:layout_height="wrap_content"
        android:layout_width="match_parent"
        android:text="Button"
        android:onClick="doClick"/>
于 2012-05-04T11:59:13.263 回答
0

你可以试试彩色滤光片。我以前用它来更改按钮的颜色(请注意,它们一开始是标准灰色),如果你从另一种颜色开始,它可能是一个非常不同的结果。无论如何,我是如何做到的一个例子:

导入 PorterDuff 图形材料:

import android.graphics.PorterDuff;

在类中定义要进行颜色过滤的项目并设置过滤器:

Button atdButton = (Button) convertView.findViewById(R.id.attendbutton);

    if (atdState[position].equals("P")) {
        atdButton.getBackground().setColorFilter(0xFF00FF00,  // Set filter to green
                PorterDuff.Mode.MULTIPLY);
    } else if (atdState[position].equals("T")) {
        atdButton.getBackground().setColorFilter(0xFFFFFF00,  // Set filter to yellow
                PorterDuff.Mode.MULTIPLY);
    } else if (atdState[position].equals("E")) {
        atdButton.getBackground().setColorFilter(0xFFFF6600,  // Set filter to orange
                PorterDuff.Mode.MULTIPLY);
    } else if (atdState[position].equals("U")) {
        atdButton.getBackground().setColorFilter(0xFFFF0000,  // Set filter to red
                PorterDuff.Mode.MULTIPLY);
    } else {
        atdButton.getBackground().clearColorFilter();
    }
于 2012-05-04T12:02:40.343 回答
0

您可以将此代码放在一个单独的方法中,并且您可以从按钮的 onClick 调用该方法。

于 2012-05-04T11:36:34.037 回答