91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Android中Animation如何使用

發布時間:2021-06-26 15:04:39 來源:億速云 閱讀:166 作者:Leah 欄目:移動開發

這篇文章將為大家詳細講解有關Android中Animation如何使用,文章內容質量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。

Android使用Animation方法一:在xml中定義動畫:

Xml代碼

  1. < ?xml version="1.0" encoding="utf-8"?>   

  2. < set xmlns:android=
    "http://schemas.android.com/apk/res/android">   

  3. < rotate   

  4. android:interpolator="@android:anim/accelerate_
    decelerate_interpolator"   

  5. android:fromDegrees="0"   

  6. android:toDegrees="+360"   

  7. android:duration="3000" />   

  8. < !-- rotate 旋轉動畫效果   

  9. 屬性:interpolator 指定一個動畫的插入器,用來控制動畫的速度變化   

  10. fromDegrees 屬性為動畫起始時物件的角度   

  11. toDegrees 屬性為動畫結束時物件旋轉的角度,+代表順時針   

  12. duration 屬性為動畫持續時間,以毫秒為單位   

  13. -->   

  14. < /set>   

  15. < ?xml version="1.0" encoding="utf-8"?> 

  16. < set xmlns:android=
    "http://schemas.android.com/apk/res/android"> 

  17. < rotate   

  18. android:interpolator=
    "@android:anim/accelerate_decelerate_interpolator" 

  19. android:fromDegrees="0"   

  20. android:toDegrees="+360" 

  21. android:duration="3000" /> 

  22. < !-- rotate 旋轉動畫效果  

  23. 屬性:interpolator 指定一個動畫的插入器,用來控制動畫的速度變化  

  24. fromDegrees 屬性為動畫起始時物件的角度   

  25. toDegrees 屬性為動畫結束時物件旋轉的角度,+代表順時針  

  26. duration 屬性為動畫持續時間,以毫秒為單位  

  27. --> 

  28. < /set> 

使用動畫的Java代碼,程序的效果是點擊按鈕,TextView旋轉一周:

Java代碼

  1. package com.ray.animation;   

  2. import android.app.Activity;   

  3. import android.os.Bundle;   

  4. import android.view.View;   

  5. import android.view.View.OnClickListener;   

  6. import android.view.animation.Animation;   

  7. import android.view.animation.AnimationUtils;   

  8. import android.widget.Button;   

  9. import android.widget.TextView;   

  10. public class TestAnimation extends Activity 
    implements OnClickListener{   

  11. public void onCreate(Bundle savedInstanceState) {   

  12. super.onCreate(savedInstanceState);   

  13. setContentView(R.layout.main);   

  14. Button btn = (Button)findViewById(R.id.Button01);   

  15. btn.setOnClickListener(this);   

  16. }   

  17. @Override   

  18. public void onClick(View v) {   

  19. Animation anim = AnimationUtils.loadAnimation(this, 
    R.anim.my_rotate_action);   

  20. findViewById(R.id.TextView01).startAnimation(anim);   

  21. }   

  22. }   

  23. package com.ray.animation;  

  24. import android.app.Activity;  

  25. import android.os.Bundle;  

  26. import android.view.View;  

  27. import android.view.View.OnClickListener;  

  28. import android.view.animation.Animation;  

  29. import android.view.animation.AnimationUtils;  

  30. import android.widget.Button;  

  31. import android.widget.TextView;  

  32. public class TestAnimation extends Activity 
    implements OnClickListener{  

  33. public void onCreate(Bundle savedInstanceState) {  

  34. super.onCreate(savedInstanceState);  

  35. setContentView(R.layout.main);  

  36. Button btn = (Button)findViewById(R.id.Button01);  

  37. btn.setOnClickListener(this);   

  38. }  

  39. @Override  

  40. public void onClick(View v) {  

  41. Animation anim = AnimationUtils.loadAnimation(this, 
    R.anim.my_rotate_action);  

  42. findViewById(R.id.TextView01).startAnimation(anim);  

  43. }  

Android使用Animation方法二:直接在代碼中定義動畫(效果跟方法一類似):

Java代碼

  1. package com.ray.animation;   

  2. import android.app.Activity;   

  3. import android.os.Bundle;   

  4. import android.view.View;   

  5. import android.view.View.OnClickListener;   

  6. import android.view.animation.AccelerateDecelerateInterpolator;   

  7. import android.view.animation.Animation;   

  8. import android.view.animation.RotateAnimation;   

  9. import android.widget.Button;   

  10. public class TestAnimation extends Activity 
    implements OnClickListener{   

  11. public void onCreate(Bundle savedInstanceState) {   

  12. super.onCreate(savedInstanceState);   

  13. setContentView(R.layout.main);   

  14. Button btn = (Button)findViewById(R.id.Button);   

  15. btn.setOnClickListener(this);   

  16. }   

  17. public void onClick(View v) {   

  18. Animation anim = null;   

  19. anim = new RotateAnimation(0.0f,+360.0f);   

  20. anim.setInterpolator(new AccelerateDecelerateInterpolator());   

  21. anim.setDuration(3000);   

  22. findViewById(R.id.TextView01).startAnimation(anim);   

  23. }   

關于Android中Animation如何使用就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

邢台县| 海兴县| 阜康市| 南陵县| 湖北省| 明溪县| 秦皇岛市| 台中县| 洛宁县| 建瓯市| 平山县| 曲松县| 宜都市| 贵阳市| 青田县| 彭阳县| 洛阳市| 湾仔区| 长丰县| 洞口县| 庆阳市| 类乌齐县| 新昌县| 辉县市| 泗水县| 新兴县| 望城县| 龙川县| 桂阳县| 建瓯市| 望都县| 宁晋县| 郁南县| 海宁市| 正镶白旗| 竹北市| 青州市| 河津市| 平凉市| 桐庐县| 叶城县|