Android实现dialog的3D翻转示例

本文实现了Android中dialog的3D翻转效果。这里通过一个简单的应用场景记录下。

效果图

起初自己的思路是Activity进行界面跳转实现旋转效果,网上看了很多,写下来发现效果不对。之后又看到Google上面的Card Flid Animation效果是这样的。

看着确实不错,然而拿下来demo放慢翻转速度后发现,不是我想要的。但是跟我看到的一个app里面的效果一样

然后想改成dialog试试效果,发现更是不行了。

Card Flid Animation效果如下:

这个是通过Activity来切换Fragment实现的,可以看到区别是翻转时候貌似会变大,其实没用,只是翻转后的视觉问题。

听说openGl比较麻烦,并且没有用过。然后就搜了下Rotate3DAnimaitons。

搜到了这篇文章http://www.jb51.net/article/77195.htm

所以这篇文章里的实现方法不是我的原创,是参考人家的。在这里感谢这位大神。

不过他这个是activity里的,我就想要一个dialog效果,因为电脑上TIM的打开红包这个3D效果看着不错,其实大同小异,就拿过来改成Dialog。

对于Rotate3DAnimaitons这篇文章已经很详细了,有需要的可以参考下。

这里也贴下Rotate3dAnimation 的代码

简单加了两行注释

/**
 * An animation that rotates the view on the Y axis between two specified angles.
 * This animation also adds a translation on the Z axis (depth) to improve the effect.
 */
public class Rotate3dAnimation extends Animation {
  private final float mFromDegrees;
  private final float mToDegrees;
  private final float mCenterX;
  private final float mCenterY;
  private final float mDepthZ;
  private final boolean mReverse;
  private Camera mCamera;

  /**
   * Creates a new 3D rotation on the Y axis. The rotation is defined by its
   * start angle and its end angle. Both angles are in degrees. The rotation
   * is performed around a center point on the 2D space, definied by a pair
   * of X and Y coordinates, called centerX and centerY. When the animation
   * starts, a translation on the Z axis (depth) is performed. The length
   * of the translation can be specified, as well as whether the translation
   * should be reversed in time.
   *
   * @param fromDegrees the start angle of the 3D rotation //起始角度
   * @param toDegrees the end angle of the 3D rotation //结束角度
   * @param centerX the X center of the 3D rotation //x中轴线
   * @param centerY the Y center of the 3D rotation //y中轴线
   * @param reverse true if the translation should be reversed, false otherwise//是否反转
   */
  public Rotate3dAnimation(float fromDegrees, float toDegrees,
      float centerX, float centerY, float depthZ, boolean reverse) {
    mFromDegrees = fromDegrees;
    mToDegrees = toDegrees;
    mCenterX = centerX;
    mCenterY = centerY;
    mDepthZ = depthZ;//Z轴移动的距离,这个来影响视觉效果,可以解决flip animation那个给人看似放大的效果
    mReverse = reverse;
  }

  @Override
  public void initialize(int width, int height, int parentWidth, int parentHeight) {
    super.initialize(width, height, parentWidth, parentHeight);
    mCamera = new Camera();
  }

  @Override
  protected void applyTransformation(float interpolatedTime, Transformation t) {
    final float fromDegrees = mFromDegrees;
    float degrees = fromDegrees + ((mToDegrees - fromDegrees) * interpolatedTime);

    final float centerX = mCenterX;
    final float centerY = mCenterY;
    final Camera camera = mCamera;

    final Matrix matrix = t.getMatrix();

    Log.i("interpolatedTime", interpolatedTime+"");
    camera.save();
    if (mReverse) {
      camera.translate(0.0f, 0.0f, mDepthZ * interpolatedTime);
    } else {
      camera.translate(0.0f, 0.0f, mDepthZ * (1.0f - interpolatedTime));
    }
    camera.rotateY(degrees);
    camera.getMatrix(matrix);
    camera.restore();

    matrix.preTranslate(-centerX, -centerY);
    matrix.postTranslate(centerX, centerY);
  }
}

dialog实现3D翻转代码,

说明:动画部分的代码是拿的搜的的那篇文章的

public class MyDialog extends Dialog {

  @BindView(R.id.et_user_name)
  EditText etUserName;
  @BindView(R.id.et_password)
  EditText etPassword;
  @BindView(R.id.cb_auto_login)
  CheckBox cbAutoLogin;
  @BindView(R.id.tv_forget_pwd)
  TextView tvForgetPwd;
  @BindView(R.id.ll_content)
  LinearLayout llContent;
  @BindView(R.id.et_email)
  EditText etEmail;
  @BindView(R.id.btn_back)
  Button btnBack;
  @BindView(R.id.container)
  RelativeLayout container;
  private Context context;

  @BindView(R.id.ll_register)
  LinearLayout llRegister;

  //接口回调传递参数
  private OnClickListenerInterface mListener;
  private View view;
//
  private String strContent;

  private int centerX;
  private int centerY;
  private int depthZ = 700;//修改此处可以改变距离来达到你满意的效果
  private int duration = 300;//动画时间
  private Rotate3dAnimation openAnimation;
  private Rotate3dAnimation closeAnimation;

  private boolean isOpen = false;

  public interface OnClickListenerInterface {

    /**
     * 确认,
     */
    void doConfirm();

    /**
     * 取消
     */
//    public void doCancel();
  }

  public MyDialog(Context context) {
    super(context);
    this.context = context;
  }

  public MyDialog(Context context, String content) {
    super(context);
    this.context = context;
    this.strContent = content;

  }

  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    //去掉系统的黑色矩形边框
    getWindow().setBackgroundDrawableResource(android.R.color.transparent);
    requestWindowFeature(Window.FEATURE_NO_TITLE);

    init();
  }

  public void init() {
    LayoutInflater inflater = LayoutInflater.from(context);
    view = inflater.inflate(R.layout.dialog_my, null);
    setContentView(view);
    ButterKnife.bind(this);
    etPassword.setTypeface(Typeface.DEFAULT);
    etPassword.setTransformationMethod(new PasswordTransformationMethod());
    tvForgetPwd.setOnClickListener(new OnWidgetClickListener());
    btnBack.setOnClickListener(new OnWidgetClickListener());
    Window dialogWindow = getWindow();
    WindowManager.LayoutParams lp = dialogWindow.getAttributes();
    DisplayMetrics d = context.getResources().getDisplayMetrics(); // 获取屏幕宽、高用
    lp.width = (int) (d.widthPixels * 0.8); // 宽度设置为屏幕的0.8
    lp.height = (int) (d.heightPixels * 0.6); // 高度设置为屏幕的0.6
    dialogWindow.setAttributes(lp);
    setCanceledOnTouchOutside(false);
    setCancelable(true);
  }

  public void setClicklistener(OnClickListenerInterface clickListenerInterface) {
    this.mListener = clickListenerInterface;
  }

  private class OnWidgetClickListener implements View.OnClickListener {
    @Override
    public void onClick(View v) {

      int id = v.getId();
      switch (id) {
        case R.id.tv_forget_pwd:
          startAnimation();
          break;
        case R.id.btn_back:
          startAnimation();
          break;
      }
    }
  }

  private void startAnimation() {
    //接口回调传递参数
    centerX = container.getWidth() / 2;
    centerY = container.getHeight() / 2;
    if (openAnimation == null) {
      initOpenAnim();
      initCloseAnim();
    }

    //用作判断当前点击事件发生时动画是否正在执行
    if (openAnimation.hasStarted() && !openAnimation.hasEnded()) {
      return;
    }
    if (closeAnimation.hasStarted() && !closeAnimation.hasEnded()) {
      return;
    }

    //判断动画执行
    if (isOpen) {

      container.startAnimation(openAnimation);

    } else {

      container.startAnimation(closeAnimation);

    }
    isOpen = !isOpen;
  }

  /**
   *注意旋转角度
   */
  private void initOpenAnim() {
    //从0到90度,顺时针旋转视图,此时reverse参数为true,达到90度时动画结束时视图变得不可见,
    openAnimation = new Rotate3dAnimation(0, 90, centerX, centerY, depthZ, true);
    openAnimation.setDuration(duration);
    openAnimation.setFillAfter(true);
    openAnimation.setInterpolator(new AccelerateInterpolator());
    openAnimation.setAnimationListener(new Animation.AnimationListener() {

      @Override
      public void onAnimationStart(Animation animation) {

      }

      @Override
      public void onAnimationRepeat(Animation animation) {

      }

      @Override
      public void onAnimationEnd(Animation animation) {
        llRegister.setVisibility(View.GONE);
        llContent.setVisibility(View.VISIBLE);
        //从270到360度,顺时针旋转视图,此时reverse参数为false,达到360度动画结束时视图变得可见
        Rotate3dAnimation rotateAnimation = new Rotate3dAnimation(270, 360, centerX, centerY, depthZ, false);
        rotateAnimation.setDuration(duration);
        rotateAnimation.setFillAfter(true);
        rotateAnimation.setInterpolator(new DecelerateInterpolator());
        container.startAnimation(rotateAnimation);
      }
    });
  }

  private void initCloseAnim() {
    closeAnimation = new Rotate3dAnimation(360, 270, centerX, centerY, depthZ, true);
    closeAnimation.setDuration(duration);
    closeAnimation.setFillAfter(true);
    closeAnimation.setInterpolator(new AccelerateInterpolator());
    closeAnimation.setAnimationListener(new Animation.AnimationListener() {

      @Override
      public void onAnimationStart(Animation animation) {

      }

      @Override
      public void onAnimationRepeat(Animation animation) {

      }

      @Override
      public void onAnimationEnd(Animation animation) {
        llRegister.setVisibility(View.VISIBLE);
        llContent.setVisibility(View.GONE);
        Rotate3dAnimation rotateAnimation = new Rotate3dAnimation(90, 0, centerX, centerY, depthZ, false);
        rotateAnimation.setDuration(duration);
        rotateAnimation.setFillAfter(true);
        rotateAnimation.setInterpolator(new DecelerateInterpolator());
        container.startAnimation(rotateAnimation);
      }
    });
  }
}

Demo下载

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我们。

(0)

相关推荐

  • Android动画之3D翻转效果实现函数分析

    Android中的翻转动画效果的实现,首先看一下运行效果如上图所示. Android中并没有提供直接做3D翻转的动画,所以关于3D翻转的动画效果需要我们自己实现,那么我们首先来分析一下Animation 和 Transformation. Animation动画的主要接口,其中主要定义了动画的一些属性比如开始时间,持续时间,是否重复播放等等.而Transformation中则包含一个矩阵和alpha值,矩阵是用来做平移,旋转和缩放动画的,而alpha值是用来做alpha动画的,要实现3D旋转动画

  • Android实现dialog的3D翻转示例

    本文实现了Android中dialog的3D翻转效果.这里通过一个简单的应用场景记录下. 效果图 起初自己的思路是Activity进行界面跳转实现旋转效果,网上看了很多,写下来发现效果不对.之后又看到Google上面的Card Flid Animation效果是这样的. 看着确实不错,然而拿下来demo放慢翻转速度后发现,不是我想要的.但是跟我看到的一个app里面的效果一样 然后想改成dialog试试效果,发现更是不行了. Card Flid Animation效果如下: 这个是通过Activi

  • Android实现3D翻转动画效果

    Android中并没有提供直接做3D翻转的动画,所以关于3D翻转的动画效果需要我们自己实现,那么我们首先来分析一下Animation 和 Transformation. Animation动画的主要接口,其中主要定义了动画的一些属性比如开始时间,持续时间,是否重复播放等等.而Transformation中则包含一个矩阵和alpha值,矩阵是用来做平移,旋转和缩放动画的,而alpha值是用来做alpha动画的,要实现3D旋转动画我们需要继承自Animation类来实现,我们需要重载getTrans

  • Android使用animator实现fragment的3D翻转效果

    今天老师留的作业,使用俩个Fragment来实现3D翻转效果,遇到了一点点的问题,于是在网上进行了查找,但是发现有些博主的代码不正确,对其他人进行了误导,在网上使用属性动画实现3D效果非常少,所以经过我自己的实验摸索,我将自己的代码和遇到的问题给他讲解一下提供一点点借鉴,并且希望可以帮助到大家. 首先讲解一下主要实现动画的函数: getFragmentManager().beginTransaction() .setCustomAnimations(R.animator.fragment_sec

  • Android 自定义加载动画Dialog弹窗效果的示例代码

    效果图 首先是创建弹窗的背景 这是上面用到的 以shape_bg_5_blue.xml为例,其他的三个无非就是里面的颜色不一样而已 <?xml version="1.0" encoding="utf-8"?> <shape xmlns:android="http://schemas.android.com/apk/res/android"> <corners android:radius="5dp"

  • Android 自定义Dialog 实例

    开发中经常需要请求网络获取数据,我们在请求网络到得到数据时当中需要等待一些时间,为了增加用户体验,我们一般会用一个Dialog来提示用户我们在加载网络数据. 今天我们来实现如下效果的加载中Dialog. 从图中我们可以看到要这个Dialog是图片还有文字组成的,(不过我这里使用代码实现的,没有用图片),以下是这个加载图形的代码: public class LVCircularRing extends View { private float mWidth = 0f; private float

  • Android编程之View简单学习示例

    本文实例讲述了Android编程之View简单学习示例.分享给大家供大家参考,具体如下: View,是Android的一个超类,这个类几乎包含了所有的屏幕类型.每一个View都有一个用于绘图的画布,这个画布可以进行任意扩展. 在游戏开发中叶可以自定义视图(View),这个画布的功能更能满足我们在游戏开发中的需要.在Android中,任何一个View类都只需重写onDraw 方法来实现界面显示,自定义的视图可以是复杂的3D实现,也可以是非常简单的文本形式等. 游戏的核心是不断地绘图和刷新界面,An

  • android使用FlipAnimation实现3D垂直翻转动画

    本文实例为大家分享了android实现3D垂直翻转动画的具体代码,供大家参考,具体内容如下 需求 对ImageView进行类似于翻纸牌的动画 解决 各种Animator的组合 第一步动画: 动画代码文件1,card_flip_left_out.xml <?xml version="1.0" encoding="utf-8"?> <set xmlns:android="http://schemas.android.com/apk/res/a

  • Android 多种dialog的实现方法(推荐)

    要求:设计如下界面,包括图片按钮.复选按钮.单选按钮.普通按钮,单击按钮弹出对话框,运行效果如下: string.xml文件源代码: <resources> <string name="app_name">多种弹出对话框</string> <string name="dialog_img">图片按钮</string> <string name="dialog_radio">单

  • Android实现强制下线功能的示例代码

    一.回顾 上次连载写了两个类,一个类ActivityCollector.java用于管理所有的活动:一个类是BaseActivity.java作为所有活动的父类: 还有一个放在layout目录中的登录界面login.xml 二.登录页面的活动 接下来写一个登录页面的活动,继承自BaseActivity.java package com.example.broadcastbestpractice; import android.content.Intent; import android.os.B

随机推荐