我正在尝试以编程方式更改CardView颜色。
这是我的CardView:
<android.support.v7.widget.CardView
android:id="@+id/createsub_card"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="10dp">
这就是我设置背景颜色的方法:
CardView card = (CardView) findViewById(R.id.createsub_card);
card.setCardBackgroundColor(sub.getColor());
其中sub.getColor()
在此特定情况下返回此颜色:
<color name="color_black">#000000</color>
应该是漆黑。我的CardView仍然如下:
关于为什么会发生这种情况以及如何解决问题的任何想法?
答案 0 :(得分:2)
我假设由 sub.getColor()引起的问题。首先正确返回Color 代码。
你可以试试这个
cardView.setCardBackgroundColor(Color.parseColor("#000000"));
或者
cardView.setCardBackgroundColor(getResources().getColor(R.color.color_black));
答案 1 :(得分:1)
问题是sub.getColor(),你返回颜色id(R.color.color_black)而不是颜色代码。看下面的代码
<强> sample.xml中强>
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v7.widget.CardView
android:id="@+id/createsub_card"
android:layout_width="match_parent"
android:layout_height="120dp"
android:layout_margin="10dp">
</android.support.v7.widget.CardView>
<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="10dp"
android:text="Click"
android:layout_below="@+id/createsub_card"
android:layout_centerHorizontal="true"
android:layout_marginTop="13dp" />
</RelativeLayout>
<强> SampleActivity.java 强>
import android.os.Bundle;
import android.support.annotation.Nullable;
import android.support.v7.app.AppCompatActivity;
import android.support.v7.widget.CardView;
import android.view.View;
import android.widget.Button;
/**
* Created by Magesh on 5/4/2017.
*/
public class SampleActivity extends AppCompatActivity implements View.OnClickListener
{
private CardView mCardView;
private Button mBtnClick;
@Override
protected void onCreate(@Nullable Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.sample);
mCardView = (CardView) findViewById(R.id.createsub_card);
mBtnClick = (Button) findViewById(R.id.button);
mBtnClick.setOnClickListener(this);
// mCardView.setCardBackgroundColor(getResources().getColorWrongWay(R.color.color_black));
setColor(R.color.color_black);//hex color code id #000000
mCardView.setCardBackgroundColor(getColorWrongWay());// you set like this
}
private int mColor = 0;
private void setColor(int color)
{
mColor = color;
}
private int getColorWrongWay()
{
return mColor;
}
private int getColorCrtWay()
{
return getResources().getColor(mColor);
}
@Override
public void onClick(View view)
{
switch (view.getId())
{
case R.id.button:
{
mCardView.setCardBackgroundColor(getColorCrtWay());// should be like this.
}
break;
}
}
}
错误方式:
private int getColorWrongWay()
{
return mColor;
}
正确方式:
private int getColorCrtWay()
{
return getResources().getColor(mColor);
}
输出