问题描述
我有一个与TransaleAnimation一起运行的视图,它工作得很好。 问题是视图有一个android:layout_toRightOf =“ @ id / iv_hook”到不与视图动画的ImageView。 有什么办法可以做到这一点?
1楼
ImageView用于显示/隐藏。 当视图滑出时,我要显示“显示”图像。
尝试这样的事情:
// yourImageView is hidden => its visibility is View.GONE
// animate your view with translation => slide out effect
viewToAnimate.animate().translationX(newTranslationX).setDuration(duration).withEndAction(new Runnable() {
@Override
public void run() {
// now, as the animation has just finished, we want to show the image
yourImageView.setVisibility(View.VISIBLE);
}
}).start();