成人免费xxxxx在线视频软件_久久精品久久久_亚洲国产精品久久久_天天色天天色_亚洲人成一区_欧美一级欧美三级在线观看

Material Design中全新的動畫

移動開發(fā) Android
Material Design中的動畫將為用戶提供操作反饋并在用戶與您的應用進行互動時提供視覺連續(xù)性。 Material Design將為按鈕與操作行為轉換提供一些默認動畫,而 Android 5.0(API Level 21)及更高版本可讓您定制這些動畫,同時也可創(chuàng)建新動畫。

Material Design中的動畫將為用戶提供操作反饋并在用戶與您的應用進行互動時提供視覺連續(xù)性。 Material Design將為按鈕與操作行為轉換提供一些默認動畫,而 Android 5.0(API Level 21)及更高版本可讓您定制這些動畫,同時也可創(chuàng)建新動畫:

一、觸摸反饋動畫

效果圖: 

 

 

 

Material Design的觸摸反饋可在用戶與 UI 元素互動時,在接觸點上提供即時視覺確認。 適用于按鈕的默認觸摸動畫使用全新 RippleDrawable類別,以波紋效果實現(xiàn)不同狀態(tài)間的轉換。

在大多數(shù)情況下,應以下列方式指定視圖背景,在您的視圖 XML 中應用此功能:

  • android:attr/selectableItemBackground 指定有界的波紋。
  • android:attr/selectableItemBackgroundBorderless 指定越過視圖邊界的波紋。 它將由一個非空背景的視圖的最近父項所繪制和設定邊界。

任何view處于可點擊狀態(tài),都可以使用RippleDrawable來達到水波紋特效,而且必須處于可點擊狀態(tài),才會出現(xiàn)波紋動畫效果。

在代碼中可以這樣設置: 

 

 

 

注意:selectableItemBackgroundBorderless是 API Level 21 中推出的新屬性。

此外,您可利用 ripple元素將 RippleDrawable定義為一個 XML 資源。

您可以為 RippleDrawable對象指定一種顏色。如果要改變默認觸摸反饋顏色,請使用主題的 android:colorControlHighlight屬性。

如果要了解更多信息,請參閱 RippleDrawable類別的 API 參考文檔。

我們來看看系統(tǒng)自帶的觸摸反饋動畫是怎么實現(xiàn)的,為什么只需要在view的background或者foreground屬性設置成?android:attr/selectableItemBackground或者?android:attr/selectableItemBackgroundBorderless就可以實現(xiàn)波紋動畫的效果?這兩個屬性點進去,可以看到在路徑sdk/platforms/android-xx/data/res/values/attrs.xml文件中有定義這么兩個屬性:

  1. <!-- Background drawable for bordered standalone items that need focus/pressed states. --> 
  2.  
  3. <attr name="selectableItemBackground" format="reference" /> 
  4.  
  5. <!-- Background drawable for borderless standalone items that need focus/pressed states. --> 
  6.  
  7. <attr name="selectableItemBackgroundBorderless" format="reference" />  

我們想到,這兩個屬性既然是整個app中有效的,那可能會是在Theme中的屬性吧,那就去AndroidManifest文件中跟這個Theme一步步看下去,***在Base.V21.Theme.AppCompat.Light這個style中看到確實是有這兩個item屬性:

  1. <item name="selectableItemBackground">?android:attr/selectableItemBackground</item> 
  2.  
  3. <item name="selectableItemBackgroundBorderless">?android:attr/selectableItemBackgroundBorderless</item>  

但是這里還是調(diào)用的系統(tǒng)的定義的屬性,繼續(xù)往下追,在android:Theme.Material和android:Theme.Material.Light中,可以看到:

  1. <item name="selectableItemBackground">@drawable/item_background_material</item> 
  2.  
  3. <item name="selectableItemBackgroundBorderless">@drawable/item_background_borderless_material</item>  

然后sdk路徑下platforms\\android-xx\\data\\res\\drawable可以找到這些資源文件如下圖: 

 

 

 

item_background_material的內(nèi)容是:

  1. <ripple xmlns:android="http://schemas.android.com/apk/res/android" 
  2.  
  3.     android:color="?attr/colorControlHighlight"
  4.  
  5.     <item android:id="@id/mask"
  6.  
  7.         <color android:color="@color/white" /> 
  8.  
  9.     </item> 
  10.  
  11. </ripple>  

item_background_borderless_material的內(nèi)容是:

  1. <ripple xmlns:android="http://schemas.android.com/apk/res/android" 
  2.  
  3.     android:color="?attr/colorControlHighlight" />  

系統(tǒng)的做法是用ripple元素將 RippleDrawable定義為一個 XML 資源,而通過看View的源碼中在構造方法中是這樣獲取background屬性的:

  1. public View(Context context, @Nullable AttributeSet attrs, int defStyleAttr, int defStyleRes) { 
  2.  
  3.         this(context); 
  4.  
  5.  
  6.         final TypedArray a = context.obtainStyledAttributes( 
  7.  
  8.                 attrs, com.android.internal.R.styleable.View, defStyleAttr, defStyleRes); 
  9.  
  10.  
  11.         if (mDebugViewAttributes) { 
  12.  
  13.             saveAttributeData(attrs, a); 
  14.  
  15.         } 
  16.  
  17.  
  18.         Drawable background = null
  19.  
  20.  
  21.         switch (attr) { 
  22.  
  23.             case com.android.internal.R.styleable.View_background: 
  24.  
  25.                 background = a.getDrawable(attr); 
  26.  
  27.                 break; 
  28.  
  29.         . 
  30.  
  31.         . 
  32.  
  33.         . 
  34.  
  35.  

也就是說,這個background實際上就是RippleDrawable類。那我們就來看看這個RippleDrawable內(nèi)部到底是怎么做的吧。

首先官方文檔對RippleDrawable解釋是

Drawable that shows a ripple effect in response to state changes. The anchoring position of the ripple for a given state may be specified by calling setHotspot(float, float)with the corresponding state attribute identifier.

通過顯示出波紋效果來響應狀態(tài)的改變,對于給定狀態(tài)的波紋的錨定位置可以通過調(diào)用具有對應的狀態(tài)屬性標識符的setHotspot(float,float)來指定。

RippleDrawable繼承自LayerDrawable,而LayerDrawable是繼承Drawable,RippleDrawable又是為了響應View的statechange,那就看看Drawable類中對點擊時的狀態(tài)處理吧。

  1. public boolean setState(@NonNull final int[] stateSet) { 
  2.  
  3.     if (!Arrays.equals(mStateSet, stateSet)) { 
  4.  
  5.         mStateSet = stateSet; 
  6.  
  7.         return onStateChange(stateSet); 
  8.  
  9.     } 
  10.  
  11.     return false
  12.  
  13.  

給Drawable設置狀態(tài)屬性時,會把狀態(tài)的數(shù)組傳給onStateChange方法,在RippleDrawable中重寫了onStateChange。 

 

 

 

看到setRippleActive和setBackgroundActive這兩個方法應該可以猜到是什么意思了,接著看。

  1. private void setRippleActive(boolean active) { 
  2.  
  3.     if (mRippleActive != active) { 
  4.  
  5.         mRippleActive = active; 
  6.  
  7.         if (active) { 
  8.  
  9.             tryRippleEnter(); 
  10.  
  11.         } else { 
  12.  
  13.             tryRippleExit(); 
  14.  
  15.         } 
  16.  
  17.     } 
  18.  
  19.  

如果Drawable是enable=true且pressd=true時,會調(diào)用tryRippleEnter方法 

 

 

 

看到這里,我們可以知道要開始做波紋動畫的效果了。mRipple 是RippleForeground類的實例,然而我沒有在RippleForeground類中找到setup和enter方法,但是RippleForeground繼承自RippleComponent類,于是,我在這個類中發(fā)現(xiàn)了這兩個方法。

  1. public final void setup(float maxRadius, int densityDpi) { 
  2.  
  3.     if (maxRadius >= 0) { 
  4.  
  5.         mHasMaxRadius = true
  6.  
  7.         mTargetRadius = maxRadius; 
  8.  
  9.     } else { 
  10.  
  11.         mTargetRadius = getTargetRadius(mBounds); 
  12.  
  13.     } 
  14.  
  15.  
  16.     mDensityScale = densityDpi * DisplayMetrics.DENSITY_DEFAULT_SCALE; 
  17.  
  18.  
  19.     onTargetRadiusChanged(mTargetRadius); 
  20.  
  21.  

setup是初始化一系列參數(shù),enter創(chuàng)建一個動畫并開始動畫。 

 

 

 

從上面創(chuàng)建動畫的代碼可以看到,實際上是一個組合的屬性動畫,然后自定義了三個屬性波紋半徑TWEEN_RADIUS、波紋中心點TWEEN_ORIGIN和波紋的不透明度OPACITY。通過這三個屬性的過渡變化得到一個復合的動畫。以上就是前景波紋動畫效果的實現(xiàn)過程。

  1. private void setBackgroundActive(boolean active, boolean focused) { 
  2.  
  3.     if (mBackgroundActive != active) { 
  4.  
  5.         mBackgroundActive = active; 
  6.  
  7.         if (active) { 
  8.  
  9.             tryBackgroundEnter(focused); 
  10.  
  11.         } else { 
  12.  
  13.             tryBackgroundExit(); 
  14.  
  15.         } 
  16.  
  17.     } 
  18.  
  19.  

mBackground是RippleBackground類的實例,與RippleForeground不同的是,背景動畫只是改變了不透明度。

  1. @Override 
  2.  
  3. protected Animator createSoftwareEnter(boolean fast) { 
  4.  
  5.     // Linear enter based on current opacity. 
  6.  
  7.     final int maxDuration = fast ? OPACITY_ENTER_DURATION_FAST : OPACITY_ENTER_DURATION; 
  8.  
  9.     final int duration = (int) ((1 - mOpacity) * maxDuration); 
  10.  
  11.  
  12.     final ObjectAnimator opacity = ObjectAnimator.ofFloat(this, OPACITY, 1); 
  13.  
  14.     opacity.setAutoCancel(true); 
  15.  
  16.     opacity.setDuration(duration); 
  17.  
  18.     opacity.setInterpolator(LINEAR_INTERPOLATOR); 
  19.  
  20.  
  21.     return opacity; 
  22.  
  23.  

以上分析的都是手指觸摸view時產(chǎn)生的enter波紋動畫,當手指抬起時state也會改變,會產(chǎn)生一個exit動畫,這里就不詳細分析了。

二、使用揭露效果

效果圖: 

 

 

 

當需要顯示或隱藏一組UI元素時,揭露動畫可為用戶提供視覺連續(xù)性。

  1. /* @param view The View will be clipped to the animating circle.要隱藏或顯示的view 
  2.  
  3.  * @param centerX The x coordinate of the center of the animating circle, relative to <code>view</code>.動畫開始的中心點X 
  4.  
  5.  * @param centerY The y coordinate of the center of the animating circle, relative to <code>view</code>.動畫開始的中心點Y 
  6.  
  7.  * @param startRadius The starting radius of the animating circle.動畫開始半徑 
  8.  
  9.  * @param endRadius The ending radius of the animating circle.動畫結束半徑 
  10.  
  11.  */ 
  12.  
  13. public static Animator createCircularReveal(View view
  14.  
  15.         int centerX,  int centerY, float startRadius, float endRadius) { 
  16.  
  17.     return new RevealAnimator(view, centerX, centerY, startRadius, endRadius); 
  18.  
  19.  

RevealAnimator和之前的動畫使用沒什么區(qū)別,同樣可以設置監(jiān)聽器和加速器來實現(xiàn)各種各樣的特效,該動畫主要用在隱藏或者顯示一個view,改變view的大小等過渡效果。

顯示view:

  1. final TextView tv9 = (TextView) findViewById(R.id.tv9); 
  2.  
  3.  
  4. findViewById(R.id.content_main).setOnClickListener(new View.OnClickListener() { 
  5.  
  6.     @Override public void onClick(View v) { 
  7.  
  8.         // get the center for the clipping circle 
  9.  
  10.         int cx = (tv9.getRight() - tv9.getLeft()) / 2; 
  11.  
  12.         int cy = (tv9.getBottom() - tv9.getTop()) / 2; 
  13.  
  14.  
  15.         // get the final radius for the clipping circle 
  16.  
  17.         int finalRadius = Math.max(tv9.getWidth(), tv9.getHeight()); 
  18.  
  19.  
  20.         // create the animator for this view (the start radius is zero) 
  21.  
  22.         final Animator anim = ViewAnimationUtils.createCircularReveal(tv9, cx, cy, 0, finalRadius); 
  23.  
  24.  
  25.         tv9.setVisibility(View.VISIBLE); 
  26.  
  27.  
  28.         anim.start(); 
  29.  
  30.     } 
  31.  
  32. });  

隱藏view:

  1. final TextView tv9 = (TextView) findViewById(R.id.tv9); 
  2.  
  3.  
  4. tv9.setOnClickListener(new View.OnClickListener() { 
  5.  
  6.     @Override public void onClick(View v) { 
  7.  
  8.         // get the center for the clipping circle 
  9.  
  10.         int cx = (tv9.getRight() - tv9.getLeft()) / 2; 
  11.  
  12.         int cy = (tv9.getBottom() - tv9.getTop()) / 2; 
  13.  
  14.  
  15.         // get the final radius for the clipping circle 
  16.  
  17.         int initRadius = Math.max(tv9.getWidth(), tv9.getHeight()); 
  18.  
  19.  
  20.         // create the animator for this view (the start radius is zero) 
  21.  
  22.         final Animator anim = ViewAnimationUtils.createCircularReveal(tv9, cx, cy, initRadius, 0); 
  23.  
  24.  
  25.         anim.addListener(new AnimatorListenerAdapter() { 
  26.  
  27.             @Override public void onAnimationEnd(Animator animation) { 
  28.  
  29.                 super.onAnimationEnd(animation); 
  30.  
  31.                 // make the view visible and start the animation 
  32.  
  33.                 tv9.setVisibility(View.INVISIBLE); 
  34.  
  35.             } 
  36.  
  37.         }); 
  38.  
  39.         anim.start(); 
  40.  
  41.     } 
  42.  
  43. });  

沿著中心縮小:

  1. Animator animator = ViewAnimationUtils.createCircularReveal(viewview.getWidth() / 2, view.getHeight() / 2, view.getWidth(), 0); 
  2.  
  3. animator.setInterpolator(new LinearInterpolator()); 
  4.  
  5. animator.setDuration(1000); 
  6.  
  7. animator.start();  

從左上角擴展:

  1. Animator animator = ViewAnimationUtils.createCircularReveal(view,0,0,0,(float) Math.hypot(view.getWidth(), view.getHeight())); 
  2.  
  3. animator.setDuration(1000); 
  4.  
  5. animator.start();  

三、使用轉場動畫

效果圖以共享元素的轉場動畫為例: 

 

 

 

MaterialDesign應用中的操作行為轉換透過通用元素之間的移動和轉換提供不同狀態(tài)之間的視覺連接。可為進入、退出轉換以及操作行為之間的共享元素轉換指定定制動畫。在5.0之前,我們可以在startActivity之后調(diào)用overridePendingTransition來指定Activity的轉場動畫。

  • 進入轉換將決定操作行為中視圖如何進入場景。例如,在分解進入轉換中,視圖將從屏幕外進入場景并飛往屏幕中心。
  • 退出轉換將決定操作行為中應用行為的顯示視圖如何退出場景。例如,在分解退出轉換中,視圖將從屏幕中心退出場景。
  • 共享元素轉換將決定兩個操作行為轉換之間共享的視圖如何在這些操作行為中轉換。 例如,如果兩個操作行為擁有相同的圖像,但其位置與大小不同,changeImageTransform共享元素轉換將在這些操作行為之間平滑地轉換與縮放圖像。

Android 5.0(API Level 21)支持這些進入與退出轉換:(普通過渡動畫)

  • 分解 - 從場景中心移入或移出視圖。
  • 滑動 - 從場景邊緣移入或移出視圖。
  • 淡入淡出 - 通過調(diào)整透明度在場景中增添或移除視圖。

也支持這些共享元素轉換:(共享元素的過渡動畫)

  • changeBounds - 為目標視圖的大小添加動畫。
  • changeClipBounds - 為目標視圖的裁剪大小添加動畫。
  • changeTransform - 為目標視圖的縮放、旋轉和位移添加動畫。
  • changeImageTransform - 為目標圖片的縮放、旋轉和位移添加動畫。

指定轉場動畫

要想使用新的轉場動畫,可以繼承Material Design主題后在style風格中指定: 

 

 

 

其中,change_image_transform定義如下:

  1. <!-- res/transition/change_image_transform.xml --> 
  2.  
  3. <!-- (see also Shared Transitions below) --> 
  4.  
  5. <transitionSet xmlns:android="http://schemas.android.com/apk/res/android"
  6.  
  7.   <changeImageTransform/> 
  8.  
  9. </transitionSet>  

如果要帶代碼中開啟窗口內(nèi)容轉換,需要調(diào)用Window.requestFeature()方法。 

 

 

 

普通轉場動畫:

所有繼承自visibility類都可以作為進入、退出的過度動畫。如果我們想自定義進入和退出時的動畫效果,只需要繼承Visibility,重載onAppear和onDisappear方法來定義進入喝退出的動畫。系統(tǒng)提供了三種默認方式:

  • explode 從屏幕中心移入或移出視圖
  • slide 從屏幕邊緣移入或移出視圖
  • fade 改變視圖的透明度

想在xml中指定自定義的進入、退出的過度動畫需要先對動畫進行定義:

  1. <transition class="my.app.transition.CustomTransition"/> 

注意:其中CustomTransition是我們自定義的動畫,它必須繼承自Visibility。

想以普通轉場動畫的方式啟動一個Activity,必須在startActivity函數(shù)中傳遞一個ActivityOptions的Bundle對象:

  1. ActivityOptions options = ActivityOptions.makeSceneTransitionAnimation(activity);  
  2.  
  3. startActivity(intent, options.toBundle());  

如果想讓返回也具備轉場效果,那么在返回的Activity中不要再調(diào)用finish函數(shù),而是應該使finishAfterTransition來結束一個Activity,該函數(shù)會等待動畫執(zhí)行完畢才結束該Activity。

共享轉場動畫:

如果要在兩個具有共享元素的Activity之間使用轉場動畫,那么:

1、在題中啟用窗口內(nèi)容轉換。android:windowContentTransitions

2、在Theme中指定一個共享元素轉換。

3、將transitions定義為xml資源。

4、利用 android:transitionName屬性對兩個布局中的共享元素指定一個通用名稱。

5、使用 ActivityOptions.makeSceneTransitionAnimation()方法。

  1. // get the element that receives the click event 
  2.  
  3. final View imgContainerView = findViewById(R.id.img_container); 
  4.  
  5.  
  6. // get the common element for the transition in this activity 
  7.  
  8. final View androidRobotView = findViewById(R.id.image_small); 
  9.  
  10.  
  11. // define a click listener 
  12.  
  13. imgContainerView.setOnClickListener(new View.OnClickListener() { 
  14.  
  15.     @Override 
  16.  
  17.     public void onClick(View view) { 
  18.  
  19.         Intent intent = new Intent(this, Activity2.class); 
  20.  
  21.         // create the transition animation - the images in the layouts 
  22.  
  23.         // of both activities are defined with android:transitionName="robot" 
  24.  
  25.         ActivityOptions options = ActivityOptions 
  26.  
  27.             .makeSceneTransitionAnimation(this, androidRobotView, "robot"); 
  28.  
  29.         // start the new activity 
  30.  
  31.         startActivity(intent, options.toBundle()); 
  32.  
  33.     } 
  34.  
  35. });  

如果要在代碼中生成共享view,那么需要調(diào)用View.setTransitionName()方法對兩個布局中的共享元素指定一個通用名稱。

如果有多個共享元素,則可以通過Pair進行包裝處理:

  1. ActivityOptions options = ActivityOptions.makeSceneTransitionAnimation(activity, 
  2.  
  3.       Pair.create(view1, "name1"),//這里view1、view2如果是TextView或者ImageView等,需要轉成View類型才可以 
  4.  
  5.       Pair.create(view2, "name2"));       
  6.  
  7. startActivity(intent,.toBundle());  

返回時如果需要具備轉場動畫,那么也需要用finish函數(shù)替代finishAfterTransition來結束一個Activity。

使用曲線運動

因為曲線運動和屬性動畫以及貝塞爾曲線這些東西混雜在一起,所以準備把這節(jié)拿出來單獨寫。這里就不多說了。

視圖狀態(tài)改變

Android 5.0在原有的圖片選擇器和顏色選擇器上進行了增強,不僅是控件能根據(jù)不同的狀態(tài)顯示不同的背景圖片,還能在兩種狀態(tài)切換時指定一個動畫,來增加過渡效果,吸引用戶眼球,以突出重點內(nèi)容。

StateListAnimator類和圖片選擇器,顏色選擇器類似,可以根據(jù)view的狀態(tài)改變呈現(xiàn)不同的動畫效果,通過xml我們可以構建對應不同狀態(tài)的動畫合集,其使用方式也非常簡單,在對應的狀態(tài)指定一個屬性動畫即可:

  1. <selector xmlns:android="http://schemas.android.com/apk/res/android"
  2.  
  3.     <item android:state_pressed="true"
  4.  
  5.         <set
  6.  
  7.             <objectAnimator android:propertyName="translationZ" 
  8.  
  9.                             android:duration="200" 
  10.  
  11.                             android:valueTo="20dp" 
  12.  
  13.                             android:valueType="floatType"/> 
  14.  
  15.         </set
  16.  
  17.     </item> 
  18.  
  19.     <item android:state_enabled="true" android:state_pressed="false"
  20.  
  21.         <set
  22.  
  23.             <objectAnimator android:propertyName="translationZ" 
  24.  
  25.                             android:duration="200" 
  26.  
  27.                             android:valueTo="0" 
  28.  
  29.                             android:valueType="floatType"/> 
  30.  
  31.         </set
  32.  
  33.     </item> 
  34.  
  35. </selector>  

代碼中這樣加載即可:

  1. TextView tv11 = (TextView) findViewById(R.id.tv11); 
  2.  
  3. StateListAnimator stateLAnim = AnimatorInflater.loadStateListAnimator(this,R.drawable.selector_for_button); 
  4.  
  5. tv11.setStateListAnimator(stateLAnim);  

繼承了Material主題后,按鈕默認擁有了z屬性動畫。如果想取消這種默認狀態(tài),可以把狀態(tài)動畫指定為null。

除了StateListAnimator類指定狀態(tài)切換的屬性動畫外,還可以通過AnimatedStateListDrawable來指定狀態(tài)切換的幀動畫:

  1. <animated-selector xmlns:android="http://schemas.android.com/apk/res/android"
  2.  
  3.     <item android:id="@+id/pressed" android:drawable="@drawable/btn_check_15" android:state_pressed="true"/> 
  4.  
  5.     <item android:id="@+id/normal"  android:drawable="@drawable/btn_check_0"/> 
  6.  
  7.     <transition android:fromId="@+id/normal" android:toId="@+id/pressed"
  8.  
  9.         <animation-list> 
  10.  
  11.             <item android:duration="20" android:drawable="@drawable/btn_check_0"/> 
  12.  
  13.             <item android:duration="20" android:drawable="@drawable/btn_check_1"/> 
  14.  
  15.             <item android:duration="20" android:drawable="@drawable/btn_check_2"/> 
  16.  
  17.         </animation-list> 
  18.  
  19.     </transition> 
  20.  
  21. </animated-selector>  

幀動畫的資源文件直接在xml中作為view的background即可。

四、矢量圖動畫

效果圖: 

 

 

 

先在drawable中定義一張矢量圖:

  1. <?xml version="1.0" encoding="utf-8"?> 
  2.  
  3. <vector xmlns:android="http://schemas.android.com/apk/res/android" 
  4.  
  5.     android:height="200dp" 
  6.  
  7.     android:width="200dp" 
  8.  
  9.     android:viewportHeight="400" 
  10.  
  11.     android:viewportWidth="400"
  12.  
  13.        
  14.  
  15.     <group 
  16.  
  17.         android:name="rotationGroup" 
  18.  
  19.         android:pivotX="0" 
  20.  
  21.         android:pivotY="0"
  22.  
  23.             
  24.  
  25.         <path 
  26.  
  27.             android:name="star" 
  28.  
  29.             android:pathData="M 100,100 h 200 l -200 150 100 -250 100 250 z" 
  30.  
  31.             android:strokeColor="@color/colorPrimary" 
  32.  
  33.             android:strokeLineCap="round" 
  34.  
  35.             android:strokeWidth="10"/> 
  36.  
  37.            
  38.  
  39.     </group
  40.  
  41. </vector>  

然后在anim中定義動畫:

  1. <?xml version="1.0" encoding="utf-8"?> 
  2.  
  3. <set xmlns:android="http://schemas.android.com/apk/res/android"
  4.  
  5.     <objectAnimator 
  6.  
  7.         android:propertyName="trimPathStart" 
  8.  
  9.         android:valueFrom="0" 
  10.  
  11.         android:valueTo="1" 
  12.  
  13.         android:valueType="floatType" 
  14.  
  15.         android:duration="2000" 
  16.  
  17.         android:repeatMode="reverse" 
  18.  
  19.         android:repeatCount="-1" 
  20.  
  21.         android:interpolator="@android:interpolator/accelerate_decelerate"/> 
  22.  
  23. </set 

***在drawable中定義一個animated-vector:將動畫資源指定給drawable屬性值的矢量圖。

  1. <?xml version="1.0" encoding="utf-8"?><animated-vector xmlns:android="http://schemas.android.com/apk/res/android" 
  2.    android:drawable="@drawable/vector_drawable"
  3.    <target 
  4.        android:name="star" 
  5.        android:animation="@anim/animation"/></animated-vector>  

注意:這里drawable屬性值是前面我們定義的矢量圖,target中name要和矢量圖中path的name一樣,animation就是前面定義的動畫資源文件。

在view的xml中使用以及在代碼中開始動畫: 

  1. <ImageView 
  2.  
  3.     android:id="@+id/iv" 
  4.  
  5.     android:layout_width="wrap_content" 
  6.  
  7.     android:layout_height="wrap_content" 
  8.  
  9.     android:layout_margin="20dp" 
  10.  
  11.     app:srcCompat="@drawable/anim_vector_drawable" 
  12.  
  13.     android:layout_gravity="center"/>   
  1. ImageView iv = (ImageView) findViewById(R.id.iv); 
  2.  
  3. Drawable drawable = iv.getDrawable(); 
  4.  
  5. if (drawable instanceof Animatable) { 
  6.  
  7.     ((Animatable) drawable).start(); 
  8.  
  9.  
責任編輯:龐桂玉 來源: 安卓巴士Android開發(fā)者門戶
相關推薦

2022-01-20 20:08:38

MaterialpalettesMaterial 3

2016-08-10 13:00:07

ChromeMaterial DeMaterial

2015-08-07 10:24:17

AndroidMaterialDes

2014-08-07 14:19:46

Material DeGoogle

2014-08-21 15:29:29

Material De概述

2014-12-08 14:35:51

Material De真實動作

2014-06-26 10:21:04

Material DeSwift

2015-07-21 15:02:37

設計扁平

2014-12-08 13:40:10

Material De色彩

2014-12-08 15:03:17

Material De圖像

2014-09-10 10:35:11

Material De設計原則

2014-10-27 14:34:39

Material De轉場動畫

2014-12-08 14:15:48

Material De字體排版

2014-08-21 15:40:53

Material De真實動作

2014-08-19 16:10:05

Material DeUI設計趨勢

2014-10-27 14:18:06

Material De交互響應

2018-04-25 09:06:32

Chrome瀏覽器語言

2014-08-11 11:19:19

Material De

2014-07-02 10:26:52

Material DeGoogle

2014-10-21 15:26:37

Material DeAndroid應用
點贊
收藏

51CTO技術棧公眾號

主站蜘蛛池模板: 婷婷五月色综合香五月 | 国产精品一区二区久久 | 成人在线网址 | 久久精品视频网站 | 欧美啪啪 | 亚洲国产成人精品女人久久久 | 国产精品久久二区 | 四虎永久免费黄色影片 | 久草.com| 日韩一区二区三区视频 | 黑色丝袜三级在线播放 | 国产乱码精品1区2区3区 | 精品动漫一区 | 成人av电影在线 | 久久亚洲精品久久国产一区二区 | 国产成人在线一区二区 | 99久久精品免费看国产四区 | 毛色毛片免费看 | 午夜视频在线观看一区二区 | 日韩精品一区二区三区在线观看 | 在线不卡视频 | 欧美在线观看一区 | 午夜免费在线观看 | 国精久久| 一级毛片免费完整视频 | 成人免费观看男女羞羞视频 | 欧美一区二区三区久久精品 | 国产永久免费 | 国产a视频 | 国产一区中文 | 日本在线观看视频 | 91久久久久久久久 | 久久久国产一区二区三区 | 国产精品一区二区视频 | 在线视频国产一区 | 亚洲欧美一区二区三区国产精品 | 一区二区三区中文字幕 | 自拍偷拍精品 | 久久精品欧美一区二区三区麻豆 | 日韩美女在线看免费观看 | 久久狼人天堂 |