发布于 2016-03-29 08:06:30 | 151 次阅读 | 评论: 0 | 来源: 网友投递

这里有新鲜出炉的精品教程,程序狗速度看过来!

Android移动端操作系统

Android是一种基于Linux的自由及开放源代码的操作系统,主要使用于移动设备,如智能手机和平板电脑,由Google公司和开放手机联盟领导及开发。尚未有统一中文名称,中国大陆地区较多人使用“安卓”或“安致”。


这篇文章主要介绍了Android实现Flip翻转动画效果,对Android程序设计人员有很好的参考借鉴价值,需要的朋友可以参考下

本文实例讲述了Android实现Flip翻转动画效果的方法,分享给大家供大家学习借鉴。

具体实现代码如下:


LinearLayout locationLL = (LinearLayout) findViewById(R.id.locationLL);
LinearLayout baseLL = (LinearLayout) findViewById(R.id.baseLL);

private void flipit() {
 Interpolator accelerator = new AccelerateInterpolator();
 Interpolator decelerator = new DecelerateInterpolator();
    final LinearLayout visibleList,invisibleList;
    final ObjectAnimator visToInvis, invisToVis;
    if (locationLL.getVisibility() == View.GONE) {
      visibleList = baseLL;
      invisibleList = locationLL;
      visToInvis = ObjectAnimator.ofFloat(visibleList, "rotationY", 0f, 90f);
      invisToVis = ObjectAnimator.ofFloat(invisibleList, "rotationY", -90f, 0f);
    } else {
      invisibleList = baseLL;
      visibleList = locationLL;
      visToInvis = ObjectAnimator.ofFloat(visibleList, "rotationY", 0f, -90f);
      invisToVis = ObjectAnimator.ofFloat(invisibleList, "rotationY", 90f, 0f);
    }
    visToInvis.setDuration(300);
    invisToVis.setDuration(300);
    visToInvis.setInterpolator(accelerator);
    invisToVis.setInterpolator(decelerator);
    visToInvis.addListener(new AnimatorListenerAdapter() {
      @Override
      public void onAnimationEnd(Animator anim) {
        visibleList.setVisibility(View.GONE);
        invisToVis.start();
        invisibleList.setVisibility(View.VISIBLE);
      }
    });
    visToInvis.start();
}

希望本文所述实例对大家Android程序设计能有一定的帮助。



最新网友评论  共有(0)条评论 发布评论 返回顶部

Copyright © 2007-2017 PHPERZ.COM All Rights Reserved   冀ICP备14009818号  版权声明  广告服务