国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 系統 > Android > 正文

Android 中 Tweened animation的實例詳解

2019-10-22 18:27:11
字體:
來源:轉載
供稿:網友

Android Tweened animation的實例詳解

Tweened animation有四種類型,下面主要介紹Scale類型。

運行效果如下:

Android,Tweened,animation,中,animation的使用方法詳解,animation實例

Android SDK提供了2種方法:直接從XML資源中讀取Animation,使用Animation子類的構造函數來初始化Animation對象,第二種方法在看了Android SDK中各個類的說明就知道如何使用了,下面簡要說明從XML資源中讀取Animation。XML資源中的動畫文件animation.xml內容為:

<?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:startOffset="3000"     android:duration="3000"     android:repeatCount="4"/> </set> 

主文件ScaleAnimation.java內容為:

package com.android.animation; import android.app.Activity; import android.os.Bundle; import android.view.animation.Animation; import android.view.animation.AnimationUtils; import android.widget.ImageView; public class TestAnimation extends Activity {   /** Called when the activity is first created. */   @Override   public void onCreate(Bundle savedInstanceState) {     super.onCreate(savedInstanceState);     setContentView(R.layout.main);     ImageView imageView = (ImageView) findViewById(R.id.imageview);     Animation animation = AnimationUtils.loadAnimation(this, R.anim.animation);     imageView.startAnimation(animation);   } } 

程序很容易看懂,主要為了說明伸縮動畫效果而沒有增加復雜性。值得說明的是,本人在測試階段,錯誤的認為不需要布局文件,把行setContentView(R.layout.main);去掉,導致程序運行一直出錯。其實動畫也需要首先把布局文件加載到Activity里面,然后對布局里面的控件增加動畫。

如有疑問請留言或者到本站社區交流討論,感謝閱讀,希望能幫助到大家,謝謝大家對本站的支持!


注:相關教程知識閱讀請移步到Android開發頻道。
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 淮北市| 襄樊市| 揭东县| 清新县| 天祝| 双城市| 万荣县| 堆龙德庆县| 南开区| 宁阳县| 民勤县| 长治县| 莲花县| 延安市| 澳门| 昌邑市| 龙里县| 宁陵县| 浦城县| 杭州市| 平定县| 团风县| 庆元县| 衡南县| 教育| 浦北县| 永清县| 日照市| 枣庄市| 榆中县| 嘉义县| 霍林郭勒市| 商河县| 建德市| 沁源县| 阿拉善右旗| 伊春市| 阿拉善右旗| 尚志市| 剑阁县| 商都县|