美文网首页
关于View的滑动

关于View的滑动

作者: stayAnd | 来源:发表于2016-07-25 10:03 被阅读0次

if(!flag){ //滑动上去
scrollLL.animate().translationY(0).translationY(-topLL.getHeight()).setDuration(400).setListener(new AnimatorListenerAdapter(){
@Override
public void onAnimationEnd(Animator animation) {
super.onAnimationEnd(animation);
btnClose.setText("展示信息");
setTopImg(btnClose,2);
}
}).start();
topLL.animate().translationY(0).translationY(-topLL.getHeight()).setDuration(400).start();
}else{ //滑动下来
topLL.animate().translationY(-topLL.getHeight()).translationY(0).setDuration(400).start();
scrollLL.animate().translationY(-topLL.getHeight()).translationY(0).setDuration(400).setListener(new AnimatorListenerAdapter() {
@Override
public void onAnimationEnd(Animator animation) {
super.onAnimationEnd(animation);
btnClose.setText("隐藏信息");
setTopImg(btnClose,1);
}
}).start();
}

相关文章

网友评论

      本文标题:关于View的滑动

      本文链接:https://www.haomeiwen.com/subject/ekugjttx.html