Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> 問題小結(15)-縮放動畫scale

問題小結(15)-縮放動畫scale

編輯:關於Android編程

首先寫了一個示例anim:

[html] 
<?xml version="1.0" encoding="utf-8"?> 
<set xmlns:android="http://schemas.android.com/apk/res/android"> 
   <scale 
          android:interpolator="@android:anim/accelerate_decelerate_interpolator" 
           
          android:fromXScale="0.0" 
          android:toXScale="1.4" 
           
          android:fromYScale="0.0" 
          android:toYScale="1.4" 
           
          android:pivotX="50%" 
          android:pivotY="50%" 
           
          android:fillAfter="false" 
          android:duration="700" /> 
</set> 

<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">
   <scale
          android:interpolator="@android:anim/accelerate_decelerate_interpolator"
         
          android:fromXScale="0.0"
          android:toXScale="1.4"
         
          android:fromYScale="0.0"
          android:toYScale="1.4"
         
          android:pivotX="50%"
          android:pivotY="50%"
         
          android:fillAfter="false"
          android:duration="700" />
</set>


簡單說下其屬性的含義:


        浮點型值:
        
        fromXScale 屬性為動畫起始時 X坐標上的伸縮尺寸   
        toXScale   屬性為動畫結束時 X坐標上的伸縮尺寸    
       
        fromYScale 屬性為動畫起始時Y坐標上的伸縮尺寸   
        toYScale   屬性為動畫結束時Y坐標上的伸縮尺寸   
       
        說明:
       

         以上四種屬性值:
                      0.0表示收縮到沒有
                     1.0表示正常無伸縮    
                     值小於1.0表示收縮 
                     值大於1.0表示放大
       
       
        pivotX     屬性為動畫相對於物件的X坐標的開始位置
        pivotY     屬性為動畫相對於物件的Y坐標的開始位置
       
        說明:
                     以上兩個屬性值 從0%-100%中取值
                     50%為物件的X或Y方向坐標上的中點位置
       
        長整型值:
        duration  屬性為動畫持續時間
       

         說明:    
                     時間以毫秒為單位
       
       
        布爾型值:
           fillAfter 屬性 當設置為true ,該動畫轉化在動畫結束後被應用     

 

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved