У меня есть анимация. Imageview немного гуляет.Но вокруг изображения появляется тень.Как я могу удалить это?
TranslateAnimation translate = new TranslateAnimation(1, 1, 1, -100);
translate.setDuration(1500);
translate.setRepeatMode(TranslateAnimation.REVERSE);
translate.setRepeatCount(1);
translate.setZAdjustment(TranslateAnimation.ZORDER_TOP);
imageView.startAnimation(translate);
И вот некоторые особенности моего взгляда
imageView = new ImageView(this);
imageView.setBackgroundColor(Color.TRANSPARENT);
imageView.bringToFront();
imageView.setAdjustViewBounds(true);
imageView.setMaxWidth(imageMaxWidth);
imageView.setImageResource(animal.getImageId());
imageView.setPadding(0, 0, 0, 0);
imageView.setTag(animal);
imageView.setScaleType(ScaleType.FIT_XY);