您好,登錄后才能下訂單哦!
簡介
為view設置動畫效果;
使用方法
(1)設置中心點位置:
//設置中心點為view的原點,左上 ViewHelper.setPivotX(view, 0); ViewHelper.setPivotY(view, 0); //設置中心點為中間點 ViewHelper.setPivotX(view, target.getWidth() / 2f); ViewHelper.setPivotY(view, target.getHeight() / 2f); //設置中心為右下 ViewHelper.setPivotX(view, target.getWidth()); ViewHelper.setPivotY(view, target.getHeight());
(2)設置單個動畫:
//String name,是要創建動畫的名字,名字是固定的; //具體的名字有:translationX、translationY、scaleX、scaleY、alpha、rotationX、rotationY、rotation; //valuse是與動畫對應的一些值(開始值,結束值,增量....) ObjectAnimator.ofFloat(View, String animationName, float... values).setDuration(duration).start();
(3)設置動畫集合:
//1.創建動畫集 AnimatorSet set = new AnimatorSet(); //2.添加動畫 set.playTogether( ObjectAnimator.ofFloat(view, "scaleX", 2, 1.5f, 1).setDuration(mDuration), ObjectAnimator.ofFloat(view, "scaleY", 2, 1.5f, 1).setDuration(mDuration), ObjectAnimator.ofFloat(view, "alpha", 0, 1).setDuration(mDuration * 3 / 2)); //3.開啟動畫 set.start();
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。