android xml實現animation 4種動畫效果

来源:http://www.cnblogs.com/zhousen34/archive/2016/05/25/Zhou.html
-Advertisement-
Play Games

animation有四種動畫類型 分別為alpha(透明的漸變)、rotate(旋轉)、scale(尺寸伸縮)、translate(移動),二實現的分發有兩種,一種是javaCode,另外一種是XML,而我今天要說的是XML實現的方法,個人感覺javaCode的實現方法比xml要簡單,所以有需要的可 ...


animation有四種動畫類型 分別為alpha(透明的漸變)、rotate(旋轉)、scale(尺寸伸縮)、translate(移動),二實現的分發有兩種,一種是javaCode,另外一種是XML,而我今天要說的是XML實現的方法,個人感覺javaCode的實現方法比xml要簡單,所以有需要的可以自己去找找資料看看。下麵是我的四個xml文件,分別代表這四種動畫類型。

alpha.xml

 COde:

<?xml version="1.0" encoding="UTF-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android"
    android:interpolator="@android:anim/accelerate_interpolator">

    <!-- 漸變透明的動畫效果 -->
<!--fromAlpha 動畫起始透明的 1.0完全不透明
    toAlpha  動畫結束時透明的 0.0完全透明
    startOffset 設置啟動時間
    duration 屬性動畫持續時間
    -->
<alpha
    android:fromAlpha="1.0"
    android:toAlpha="0.0"
    android:startOffset="500"
    android:duration="5000"
    />
</set>

 

rotate.xml

 

  <?xml version="1.0" encoding="UTF-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android"
    android:interpolator="@android:anim/accelerate_interpolator">
  <!-- 畫面轉移旋轉動畫效果 -->
    <!--
    fromDegrees開始角度
    toDegrees結束角度
    pivotX設置旋轉時的X軸坐標
    -->
   <rotate
       android:fromDegrees="0"
       android:toDegrees="+360"
       android:pivotX="50%"
       android:pivotY="50%"
       android:duration="5000"
       />
    </set>

 

scale.xml

 

<?xml version="1.0" encoding="UTF-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android"
    android:interpolator="@android:anim/accelerate_interpolator">
<!-- 漸變尺寸伸縮動畫效果 -->
    <!--
         fromXScale 起始x軸坐標
           toXScale 止x軸坐標
         fromYScale 起始y軸坐標
           toYScale 止y軸坐標
           pivotX 設置旋轉時的X軸坐標
           pivotY  設置旋轉時的Y軸坐標
           duration 持續時間
     -->
    
<scale
    android:fromXScale="1.0"
    android:toXScale="0.0"
    android:fromYScale="1.0"
    android:toYScale="0.0"
    android:pivotX="50%"
    android:pivotY="50%"
    android:duration="5000"
    />
</set>

 

translate.xml

 

  <?xml version="1.0" encoding="UTF-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android"
    android:interpolator="@android:anim/accelerate_interpolator">
<!-- 畫面轉移位置移動動畫效果 -->
    <translate
       android:fromXDelta="0%"
       android:toXDelta="100%"
       android:fromYDelta="0%"
       android:toYDelta="0%"
       android:duration="5000"  
        />

</set>

下麵是主界面xml的佈局

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >
    
    <ImageView
        android:id="@+id/image1"
        android:layout_width="match_parent"
        android:layout_height="200px"
        />
    
    <ImageView
        android:id="@+id/image2"
        android:layout_width="match_parent"
        android:layout_height="200px"
        />
    
    <ImageView
        android:id="@+id/image3"
        android:layout_width="match_parent"
        android:layout_height="200px"
        />
    
    <ImageView
        android:id="@+id/image4"
        android:layout_width="match_parent"
        android:layout_height="200px"
        />

</LinearLayout>

然後是Activity代碼

 

 public class AnimationDemo extends Activity{
   private Animation animation,animation1,animation2,animation3;
    private ImageView image1,image2,image3,image4;
   @Override
    protected void onCreate(Bundle savedInstanceState) {
        // TODO Auto-generated method stub
        super.onCreate(savedInstanceState);
        setContentView(R.layout.animation);
        initView();
    }

   public void initView()
   {
       animation=AnimationUtils.loadAnimation(AnimationDemo.this, R.anim.rotate);
       animation1=AnimationUtils.loadAnimation(AnimationDemo.this, R.anim.scale);
       animation2=AnimationUtils.loadAnimation(AnimationDemo.this, R.anim.alpha);
       animation3=AnimationUtils.loadAnimation(AnimationDemo.this, R.anim.translate);
       image1=(ImageView)findViewById(R.id.image1);
       image1.setImageResource(R.drawable.jpeg);
       image2=(ImageView)findViewById(R.id.image2);
       image2.setImageResource(R.drawable.jpg);
       image3=(ImageView)findViewById(R.id.image3);
       image3.setImageResource(R.drawable.png);
       image4=(ImageView)findViewById(R.id.image4);
       image4.setImageResource(R.drawable.gif);
       image1.startAnimation(animation);
       image2.startAnimation(animation1);
       image3.startAnimation(animation2);
       image4.startAnimation(animation3);
   }
}

好了,就這樣就是先了四種動畫效果,另外還有一個知識點,是動畫裡面的速率問題,有需要的可以去上網百度看看吧。

實現效果如下:

 

您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 存到nsuesrDefault裡面一個可變字典,然後用一個可變字典去接收。 NSMutableDictionary *dic = [[NSUserDefaults standardUserDefaults]valueForKey:@"name"]; 但是你再其賦值的時候 [dic setValue: ...
  • 昨天,花了點時間,把自己的代碼做成framework,但是發現,每次遷移項目或者更新項目都是一件很頭疼的事情,索性,也跟著時尚了一回,把所有代碼都扔到git裡面進行管理,通過cococapods直接安裝即可,下麵是已經創建完.podspec文件後,需要做的步驟: 1.本地測試是否正常 2.git 上 ...
  • 即彈出Tag為CreateOneFragment之上的所有(包括自身)的Fragment。 popBackStackImmediate(name,flag); 第二個參數:只能是 0 或者 1(POP_BACK_STACK_INCLUSIVE); 第一個參數為null時, 第二個參數為0時: 會彈出 ...
  • 每次都逼我翻代碼 這次乾脆寫博客裡面算了 哈哈哈 CGSize maxSize = CGSizeMake(ScreenWith-30,NSIntegerMax); CGSize labelsize = [addressContentLabel.text boundingRectWithSize:ma ...
  • 安卓動態調試七種武器之長生劍 - Smali Instrumentation 作者:蒸米@阿裡聚安全 0x00 序 隨著移動安全越來越火,各種調試工具也都層出不窮,但因為環境和需求的不同,並沒有工具是萬能的。另外工具是死的,人是活的,如果能搞懂工具的原理再結合上自身的經驗,你也可以創造出屬於自己的調 ...
  • 寫控制項的時候經常會遇到顏色選擇問題,下麵貼出常用顏色表示,方便選擇。 <?xml version="1.0" encoding="utf-8"?><resources> <color name="colorPrimary">#3F51B5</color> <color name="colorPrim ...
  • 鄙人初次發表,如有不妥之處,敬請批評指正 1,安裝git。 git下載地址:http://git-scm.com/downloads/ 2,在AS 的File->Settings->Version Control->Git 配置git.exe命令路徑,如下圖: 配置AS 的git 配置AS 的git ...
  • IOS商城,電商開源APP,類似京東商城,天貓商城,淘寶,去年開發的一個項目,現在把它分享出來。服務端是java 商城,對應項目是Shop-for-JavaWeb1.App使用MVC框架完成開發。2.使用CocoaPods引入各大第三方組件:pod 'Masonry', '~> 0.6.4'pod ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...