如何使ImageView按钮更改背景图像?
就像你点击了imageview按钮,然后背景变为我设置的内容
答案 0 :(得分:2)
你有很多方法
ImageView i;
i.setImageBitmap(bm);
i.setImageDrawable(drawable);
i.setImageResource(resId);
您需要做的就是检查文档,然后您就会找到答案。无需在StackOverFlow上发布此类问题。祝你好运!
答案 1 :(得分:0)
button.setBackgroundDrawable(drawable);
button.setBackgroundResource(R.drawable.YOUR_DRAWABLE);
这些是按钮的选项。