最近遇到一个布局设置的,ImageSwitcher 里面加载的图片,无法占满布局。
后面排查了半天,imgSwitcher.setBackgroundResource(R.mipmap.ic_default);设置背景资源就可以了。记录一下,小问题点。
imgSwitcher.postDelayed(new Runnable() { @Override public void run() { //不满屏 //imgSwitcher.setImageResource(R.mipmap.ic_default); imgSwitcher.setBackgroundResource(R.mipmap.ic_default); imgSwitcher.postDelayed(this, IMG_DELAY_TIME); } },IMG_INIT_SHOW_DELAY_TIME);