如何在Android Studio中以编程方式更改imageView背景色

时间:2018-10-24 03:56:10

标签: android imageview background-color

std::vector<float> get_sweep_points()
{
    return program->sweep_points;
}

1 个答案:

答案 0 :(得分:0)

更改ImageView中使用的图像的颜色

imageView.setColorFilter(YOUR_COLOR, PorterDuff.Mode.SRC_IN);

要更改ImageView的背景

imageView.setBackgroundColor(YOUR_COLOR);