欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

Android實現(xiàn)dialog的3D翻轉示例

 更新時間:2017年08月17日 15:17:06   作者:Kevin_Android  
這篇文章主要介紹了Android實現(xiàn)dialog的3D翻轉示例,非常具有實用價值,需要的朋友可以參考下

本文實現(xiàn)了Android中dialog的3D翻轉效果。這里通過一個簡單的應用場景記錄下。

效果圖


起初自己的思路是Activity進行界面跳轉實現(xiàn)旋轉效果,網(wǎng)上看了很多,寫下來發(fā)現(xiàn)效果不對。之后又看到Google上面的Card Flid Animation效果是這樣的。


看著確實不錯,然而拿下來demo放慢翻轉速度后發(fā)現(xiàn),不是我想要的。但是跟我看到的一個app里面的效果一樣

然后想改成dialog試試效果,發(fā)現(xiàn)更是不行了。

Card Flid Animation效果如下:

這個是通過Activity來切換Fragment實現(xiàn)的,可以看到區(qū)別是翻轉時候貌似會變大,其實沒用,只是翻轉后的視覺問題。


聽說openGl比較麻煩,并且沒有用過。然后就搜了下Rotate3DAnimaitons。

搜到了這篇文章http://www.dbjr.com.cn/article/77195.htm

所以這篇文章里的實現(xiàn)方法不是我的原創(chuàng),是參考人家的。在這里感謝這位大神。

不過他這個是activity里的,我就想要一個dialog效果,因為電腦上TIM的打開紅包這個3D效果看著不錯,其實大同小異,就拿過來改成Dialog。

對于Rotate3DAnimaitons這篇文章已經(jīng)很詳細了,有需要的可以參考下。

這里也貼下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實現(xiàn)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;


  //接口回調(diào)傳遞參數(shù)
  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);
    //去掉系統(tǒng)的黑色矩形邊框
    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() {
    //接口回調(diào)傳遞參數(shù)
    centerX = container.getWidth() / 2;
    centerY = container.getHeight() / 2;
    if (openAnimation == null) {
      initOpenAnim();
      initCloseAnim();
    }

    //用作判斷當前點擊事件發(fā)生時動畫是否正在執(zhí)行
    if (openAnimation.hasStarted() && !openAnimation.hasEnded()) {
      return;
    }
    if (closeAnimation.hasStarted() && !closeAnimation.hasEnded()) {
      return;
    }

    //判斷動畫執(zhí)行
    if (isOpen) {

      container.startAnimation(openAnimation);

    } else {

      container.startAnimation(closeAnimation);

    }
    isOpen = !isOpen;
  }

  /**
   *注意旋轉角度
   */
  private void initOpenAnim() {
    //從0到90度,順時針旋轉視圖,此時reverse參數(shù)為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參數(shù)為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下載

以上就是本文的全部內(nèi)容,希望對大家的學習有所幫助,也希望大家多多支持腳本之家。

相關文章

  • Android自定義帶加載動畫效果的環(huán)狀進度條

    Android自定義帶加載動畫效果的環(huán)狀進度條

    這篇文章主要介紹了Android自定義帶加載動畫效果的環(huán)狀進度條,具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2017-12-12
  • android使用Jsoup 抓取頁面的數(shù)據(jù)

    android使用Jsoup 抓取頁面的數(shù)據(jù)

    本篇文章主要介紹了android使用Jsoup 抓取頁面的數(shù)據(jù),jsoup 是一款Java的HTML解析器,有需要的朋友可以了解一下。
    2016-11-11
  • 捕獲與解析Android NativeCrash

    捕獲與解析Android NativeCrash

    Android 開發(fā)中,NE一直是不可忽略卻又異常難解的一個問題,原因是這里面涉及到了跨端開發(fā)和分析,需要同時熟悉 Java,C&C++,并且需要熟悉 NDK開發(fā),并且解決起來不像 Java異常那么明了,本文為了解決部分疑惑,將從NE的捕獲,解析與還原等三個方面進行探索
    2021-06-06
  • Android中系統(tǒng)自帶鎖WalkLock與KeyguardLock用法實例詳解

    Android中系統(tǒng)自帶鎖WalkLock與KeyguardLock用法實例詳解

    這篇文章主要介紹了Android中系統(tǒng)自帶鎖WalkLock與KeyguardLock用法,結合實例形式較為詳細的分析了WalkLock與KeyguardLock的功能、作用、使用方法與相關注意事項,需要的朋友可以參考下
    2016-01-01
  • android自定義控件ImageView實現(xiàn)圓形圖片

    android自定義控件ImageView實現(xiàn)圓形圖片

    這篇文章主要為大家詳細介紹了android自定義控件ImageView實現(xiàn)圓形圖片,適用于用戶頭像,具有一定的參考價值,感興趣的小伙伴們可以參考一下
    2017-12-12
  • ionic監(jiān)聽android返回鍵實現(xiàn)“再按一次退出”功能

    ionic監(jiān)聽android返回鍵實現(xiàn)“再按一次退出”功能

    本篇文章主要介紹了ionic監(jiān)聽android返回鍵實現(xiàn)“再按一次退出”功能,非常具有實用價值,需要的朋友可以參考下
    2018-02-02
  • AndroidStudio代碼達到指定字符長度時自動換行實例

    AndroidStudio代碼達到指定字符長度時自動換行實例

    這篇文章主要介紹了AndroidStudio代碼達到指定字符長度時自動換行實例,具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧
    2020-03-03
  • Android入門之AlertDialog用法實例分析

    Android入門之AlertDialog用法實例分析

    這篇文章主要介紹了Android入門之AlertDialog用法,對Android初學者有很多的借鑒學習之處,需要的朋友可以參考下
    2014-08-08
  • Android 中 ThreadLocal使用示例

    Android 中 ThreadLocal使用示例

    這篇文章主要介紹了Android 中 ThreadLocal使用示例的相關資料,這里提供示例代碼幫助大家學習理解這部分內(nèi)容,需要的朋友可以參考下
    2017-09-09
  • Android自定義評分控件的完整實例

    Android自定義評分控件的完整實例

    在Android開發(fā)中,我們經(jīng)常會用到對商家或者商品的評價,運用星星進行打分,下面這篇文章主要給大家介紹了關于Android自定義評分控件的相關資料,文中通過圖文介紹的非常詳細,需要的朋友可以參考下
    2022-05-05

最新評論