在ImageView中方法setBackgroundColor为什么不起作用
答案:2 悬赏:0 手机版
解决时间 2021-03-12 04:10
- 提问者网友:未信
- 2021-03-11 05:16
在ImageView中方法setBackgroundColor为什么不起作用
最佳答案
- 五星知识达人网友:白昼之月
- 2021-03-11 05:38
setBackgroundColor不起作用很可能是参数问题,可参考以下方法设置ImageView背景颜色:
ImageView.setBackgroundColor(android.graphics.Color.parseColor("#ffffff"));
ImageView.setBackgroundColor(Color.RED);
ImageView.setBackgroundColor(Color.rgb(255, 0, 0));
setBackgroundColor(getResources().getColor(android.R.color.holo_blue_light));
效果图:
ImageView.setBackgroundColor(android.graphics.Color.parseColor("#ffffff"));
ImageView.setBackgroundColor(Color.RED);
ImageView.setBackgroundColor(Color.rgb(255, 0, 0));
setBackgroundColor(getResources().getColor(android.R.color.holo_blue_light));
效果图:
全部回答
- 1楼网友:山河有幸埋战骨
- 2021-03-11 06:27
ImageView ib=(ImageView)findViewById(R.id.iamge);
ib.setBackgroundColor(getResources().getColor(android.R.color.holo_blue_light));
结果:
蓝色部分
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯