真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

詳解android中animation-list動(dòng)畫的應(yīng)用

來自同事_Smile的封裝應(yīng)用,記錄學(xué)習(xí)一下,分享給大家,具體如下:

成都創(chuàng)新互聯(lián)專注于蕪湖網(wǎng)站建設(shè)服務(wù)及定制,我們擁有豐富的企業(yè)做網(wǎng)站經(jīng)驗(yàn)。 熱誠為您提供蕪湖營銷型網(wǎng)站建設(shè),蕪湖網(wǎng)站制作、蕪湖網(wǎng)頁設(shè)計(jì)、蕪湖網(wǎng)站官網(wǎng)定制、小程序開發(fā)服務(wù),打造蕪湖網(wǎng)絡(luò)公司原創(chuàng)品牌,更為您提供蕪湖網(wǎng)站排名全網(wǎng)營銷落地服務(wù)。

1、AnimImageViewLoader類的封裝

/**
 * 適用于animation-list 動(dòng)畫
 * Created by _Smile on 2016/6/13.
 */

public class AnimImageViewLoader extends ImageView {

  private AnimationDrawable frameAnimation;

  public AnimImageViewLoader(Context context, AttributeSet attrs, int defStyle) {
    super(context, attrs, defStyle);
    init();
  }

  public AnimImageViewLoader(Context context, AttributeSet attrs) {
    super(context, attrs);
    init();
  }

  public AnimImageViewLoader(Context context) {
    super(context);
    init();
  }

  /**
   * 初始化動(dòng)畫信息
   */
  private void init() {
    frameAnimation = (AnimationDrawable) getBackground();
    post(new Runnable(){
      public void run(){
        frameAnimation.start();
      }
    });
  }

  /**
   * 開啟動(dòng)畫顯示
   */
  public void startAnimation() {
    frameAnimation = (AnimationDrawable) getBackground();
    post(new Runnable() {
      @Override
      public void run() {
        frameAnimation.start();
      }
    });
  }

  /**
   * 關(guān)閉動(dòng)畫顯示
   */
  public void stopAnimation() {
    post(new Runnable() {
      @Override
      public void run() {
        frameAnimation.stop();
      }
    });
  }
}

2、布局文件

3、在代碼中的調(diào)用

AnimImageViewLoader aivIdCardPic = xFindViewById(R.id.aiv_take_id_card_pic);
 aivIdCardPic.setBackgroundResource(R.drawable.anim_id_card_negative_pic);
 aivIdCardPic.startAnimation();

4、R.drawable.anim_id_card_negative_pic文件內(nèi)容

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


  
  
  
  
  
  

以上就是本文的全部內(nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持創(chuàng)新互聯(lián)。


網(wǎng)站名稱:詳解android中animation-list動(dòng)畫的應(yīng)用
網(wǎng)站路徑:http://weahome.cn/article/pseegp.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部