140

我想圆角视图,并在运行时根据内容更改视图的颜色。

TextView v = new TextView(context);
v.setText(tagsList.get(i));
if(i%2 == 0){
    v.setBackgroundColor(Color.RED);
}else{
    v.setBackgroundColor(Color.BLUE);
}

v.setLayoutParams(new LayoutParams(LayoutParams.WRAP_CONTENT,LayoutParams.WRAP_CONTENT));
v.setPadding(twoDP, twoDP, twoDP, twoDP);               
v.setBackgroundResource(R.drawable.tags_rounded_corners);

我希望设置一个可绘制对象和颜色会重叠,但他们没有。无论我第二次执行哪个都是结果背景。

有没有办法以编程方式创建这个视图,记住背景颜色要到运行时才会决定?

编辑:我现在只在红色和蓝色之间交换以进行测试。稍后颜色将由用户选择。

编辑:

tags_rounded_corners.xml:

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" >
    <corners 
         android:bottomRightRadius="2dp" 
         android:bottomLeftRadius="2dp" 
         android:topLeftRadius="2dp" 
         android:topRightRadius="2dp"/>
</shape>
4

9 回答 9

235

取而代之的是setBackgroundColor,检索背景可绘制对象并设置其颜色:

v.setBackgroundResource(R.drawable.tags_rounded_corners);

GradientDrawable drawable = (GradientDrawable) v.getBackground();
if (i % 2 == 0) {
  drawable.setColor(Color.RED);
} else {
  drawable.setColor(Color.BLUE);
}

此外,您可以在您的tags_rounded_corners.xml:

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
  <corners android:radius="4dp" />
  <padding
    android:top="2dp"
    android:left="2dp"
    android:bottom="2dp"
    android:right="2dp" />
</shape> 
于 2013-08-23T04:58:17.700 回答
140

设置圆角并向视图添加随机背景颜色的总体编程方法。我没有测试过代码,但你明白了。

 GradientDrawable shape =  new GradientDrawable();
 shape.setCornerRadius( 8 );

 // add some color
 // You can add your random color generator here
 // and set color
 if (i % 2 == 0) {
  shape.setColor(Color.RED);
 } else {
  shape.setColor(Color.BLUE);
 }

 // now find your view and add background to it
 View view = (LinearLayout) findViewById( R.id.my_view );
 view.setBackground(shape);

在这里,我们使用渐变 drawable 以便我们可以使用,GradientDrawable#setCornerRadius因为ShapeDrawable不提供任何此类方法。

于 2013-10-03T06:11:51.533 回答
12

我认为最快的方法是:

GradientDrawable gradientDrawable = new GradientDrawable(
            GradientDrawable.Orientation.TOP_BOTTOM, //set a gradient direction 
            new int[] {0xFF757775,0xFF151515}); //set the color of gradient
gradientDrawable.setCornerRadius(10f); //set corner radius

//Apply background to your view
View view = (RelativeLayout) findViewById( R.id.my_view );
if(Build.VERSION.SDK_INT>=16)
     view.setBackground(gradientDrawable);
else view.setBackgroundDrawable(gradientDrawable);    
于 2016-04-23T07:48:54.487 回答
9

您可以像这样使用DrawableCompat更好地实现它:

Drawable backgroundDrawable = view.getBackground();             
DrawableCompat.setTint(backgroundDrawable, newColor);
于 2018-02-21T12:21:03.213 回答
5

如果您没有中风,您可以使用

colorDrawable = resources.getDrawable(R.drawable.x_sd_circle); 

colorDrawable.setColorFilter(color, PorterDuff.Mode.SRC_ATOP);

但这也会改变笔触颜色

于 2014-11-19T12:07:11.387 回答
4

您可以动态更改任何项目(布局、文本视图)的颜色。尝试下面的代码在布局中以编程方式设置颜色

在 activity.java 文件中


String quote_bg_color = "#FFC107"
quoteContainer= (LinearLayout)view.findViewById(R.id.id_quotecontainer);
quoteContainer.setBackgroundResource(R.drawable.layout_round);
GradientDrawable drawable = (GradientDrawable) quoteContainer.getBackground();
drawable.setColor(Color.parseColor(quote_bg_color));

在可绘制文件夹中创建 layout_round.xml

<?xml version="1.0" encoding="UTF-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
    <solid android:color="@color/colorPrimaryLight"/>
    <stroke android:width="0dp" android:color="#B1BCBE" />
    <corners android:radius="10dp"/>
    <padding android:left="0dp" android:top="0dp" android:right="0dp" android:bottom="0dp" />
</shape>

activity.xml 文件中的布局

<LinearLayout
        android:id="@+id/id_quotecontainer"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical">

----other components---

</LinearLayout>


于 2019-08-31T08:18:10.610 回答
4

因为问题已经回答了。但我有一点小调整

GradientDrawable drawable = (GradientDrawable) ContextCompat.getDrawable(context, R.drawable.YOUR_DRAWABLE).mutate();

您可以使用以下方法更改拐角半径:

drawable.setCornerRadius(YOUR_VALUE);

改变颜色:

drawable.setColor(Color.YOUR_COLOR);

保证可变的可绘制对象不会与任何其他可绘制对象共享其状态。因此,如果您在不使用 mutate() 的情况下更改半径,您也可能会更改其他状态。它最适合特定视图。

最后别忘了设置drawable。

this.setBackground(drawable);
于 2021-01-23T06:45:45.257 回答
3

这是一个使用扩展的示例。这假设视图具有相同的宽度和高度。

需要使用布局更改侦听器来获取视图大小。然后你可以在这样的视图上调用它myView.setRoundedBackground(Color.WHITE)

fun View.setRoundedBackground(@ColorInt color: Int) {
    addOnLayoutChangeListener(object: View.OnLayoutChangeListener {
        override fun onLayoutChange(v: View?, left: Int, top: Int, right: Int, bottom: Int, oldLeft: Int, oldTop: Int, oldRight: Int, oldBottom: Int) {

            val shape = GradientDrawable()
            shape.cornerRadius = measuredHeight / 2f
            shape.setColor(color)

            background = shape

            removeOnLayoutChangeListener(this)
        }
    })
}
于 2019-09-02T23:41:06.180 回答
3

将@cimlman 的评论复制到顶级答案中以获得更多可见性:

PaintDrawable(Color.CYAN).apply {
  setCornerRadius(24f)
}

仅供参考:(ShapeDrawable及其子类型,PaintDrawable)使用默认的内在宽度和高度 0。如果可绘制对象未显示在您的用例中,您可能必须手动设置尺寸:

PaintDrawable(Color.CYAN).apply {
  intrinsicWidth = -1
  intrinsicHeight = -1
  setCornerRadius(24f)
}

-1是一个魔术常数,表示 Drawable 没有自己的固有宽度和高度(Source)。

于 2019-10-23T21:56:19.410 回答