Android运行时背景颜色变化

问题描述 投票:-1回答:5

我正在使用LinearLayout来设置具有曲线角的BackGround Shape。我创建了可绘制的XML文件。当我尝试在RunTime中更改LinearLayout backGround Color在我的活动中,出现的颜色反映在布局中,但未应用背景形状。需要帮助

我的layout.xml文件:

<RelativeLayout        
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"                   
            android:id="@+id/month_card"
            android:backgroundTint="@drawable/circle_corner_rectangle"
            app:backgroundTintMode="src_over">

shape.xml文件

<shape android:shape="rectangle"  >
    <corners android:radius="500dip" />
    <stroke android:width="2dip" android:color="@color/colorPrimary" />
    <gradient android:angle="-90"/>
</shape>

最后在活动内部的运行时设置它

layout.setBackgroundColor(colorList.get(position));
android background-color
5个回答
1
投票

使用

    final int sdk = android.os.Build.VERSION.SDK_INT;
if(sdk < android.os.Build.VERSION_CODES.JELLY_BEAN) {
    layout.setBackgroundDrawable(ContextCompat.getDrawable(context, R.drawable.circle_corner_rectangle) 
);
} else {
    layout.setBackground(ContextCompat.getDrawable(context,R.drawable.circle_corner_rectangle));
}

代替

layout.setBackgroundColor(colorList.get(position));

0
投票

试试这个代码

circle_corner_rectangle.xml

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle" >
    <solid android:color="#E0F2F1" />
    <corners android:radius="6dp"/>
</shape>

 <RelativeLayout        
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"                   
        android:id="@+id/month_card"
        android:backgroundTint="@drawable/circle_corner_rectangle">

0
投票

也许这适合你的情况

        val shape = GradientDrawable()
        shape.shape = GradientDrawable.RECTANGLE
        shape.setStroke(mStrokeWidth!!,mStrokeColor!!)
        shape.cornerRadius = 2f
        imageView.background = shape

这段代码在kotlin中


0
投票

试试吧,

   layout.setBackgroundColor(Color.parseColor("#20A4E8"));
  (or)
   layout.setBackgroundColor(Color.BLUE);

只需添加另一个xml文件您想要并在运行时添加此代码

   layout.setBackgroundTintList(getContext.getResources().getColorStateList(R.color.your_xml_name));

0
投票

试试这个:

        Drawable drawable = yourView.getBackground();

        try {
            drawable.setColorFilter(Color.parseColor(yourColor), PorterDuff.Mode.MULTIPLY);
        } catch (Exception e) {
            e.printStackTrace();
        }
© www.soinside.com 2019 - 2024. All rights reserved.