在Android工作室中交换ImageView的背景颜色

时间:2018-03-29 23:55:48

标签: android android-studio mobile

我正在尝试交换两个ImageView的背景颜色。我目前的代码是:

self.request.user

我的颜色最初设置为红色和绿色,但在交换后它们只显示为白色。

1 个答案:

答案 0 :(得分:1)

ImageView t1 = findViewById(R.id.t1);
ImageView f1 = findViewById(R.id.f1);
Drawable tempf1 = f1.getBackground();
f1.setBackground(t1.getBackground());
t1.setBackground(tempf1);