最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

Android實(shí)現(xiàn)仿慕課網(wǎng)下拉加載動(dòng)畫

 更新時(shí)間:2015年07月23日 15:29:01   作者:掏富小牛  
這篇文章是我在做動(dòng)畫的項(xiàng)目中整理出來的,在eoe看了篇帖子,然后仿慕課網(wǎng)做了一個(gè)下拉加載動(dòng)畫。此功能實(shí)現(xiàn)方法是AnimationDrawable類進(jìn)行 Animation-list中item的循環(huán)遍歷圖片,類似于flash里的幀幀動(dòng)畫,需要的朋友可以參考下

具體實(shí)現(xiàn)方法就不多介紹了先附上源碼,相信大家都容易看的懂:

這里為了讓這個(gè)動(dòng)畫效果可被復(fù)用,于是就繼承了ImageView 去實(shí)現(xiàn)某些方法

 

package com.example.loading_drawable;

import android.content.Context;
import android.graphics.drawable.AnimationDrawable;
import android.util.AttributeSet;
import android.util.Log;
import android.view.View;
import android.view.animation.Animation;
import android.widget.ImageView;

public class MyImgView extends ImageView {
// 動(dòng)畫圖層類
private AnimationDrawable bg_anim;

public MyImgView(Context context) {
super(context, null);
initView();
}

public MyImgView(Context context, AttributeSet attrs) {
super(context, attrs, 0);
}

public MyImgView(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);

}
  //初始化
private void initView() {
setBackgroundResource(R.drawable.flash_anim);
bg_anim = (AnimationDrawable) getBackground();
Log.i("AAA", "iniView");
}

/**
* 開啟動(dòng)畫效果
*/
public void startAnim() {
if (bg_anim != null) {
 bg_anim.start();
}
}

/**
* 停止動(dòng)畫效果
*/
public void stopAnim() {
if (bg_anim != null && bg_anim.isRunning()) {
 bg_anim.stop();
}
}

/*
* (non-Javadoc)
* 
* @see android.widget.ImageView#setVisibility(int) 當(dāng)控件被顯示時(shí)就調(diào)用 開啟動(dòng)畫效果,反之
*/
@Override
public void setVisibility(int visibility) {
super.setVisibility(visibility);
if (visibility == View.VISIBLE) {
 startAnim();
} else {
 stopAnim();
}
}

}

 接下來就是:在res文件夾下新建 drawable文件夾,再此文件夾下新建 flash_anim.xml文件,具體如下:

 

<?xml version="1.0" encoding="utf-8"?>
<animation-list xmlns:android="http://schemas.android.com/apk/res/android"
android:oneshot="false">
<item android:drawable="@drawable/a01_02" android:duration="50"/>
<item android:drawable="@drawable/a01_04" android:duration="50"/>
<item android:drawable="@drawable/a01_06" android:duration="50"/>
<item android:drawable="@drawable/a01_08" android:duration="50"/>
<item android:drawable="@drawable/a01_10" android:duration="50"/>
<item android:drawable="@drawable/a01_12" android:duration="50"/>
<item android:drawable="@drawable/a01_14" android:duration="50"/>
<item android:drawable="@drawable/a01_16" android:duration="50"/>
<item android:drawable="@drawable/a01_25" android:duration="50"/>
<item android:drawable="@drawable/a01_26" android:duration="50"/>
<item android:drawable="@drawable/a01_27" android:duration="50"/>
<item android:drawable="@drawable/a01_28" android:duration="50"/>
<item android:drawable="@drawable/a01_30" android:duration="50"/>
<item android:drawable="@drawable/a01_31" android:duration="50"/>
<item android:drawable="@drawable/a01_32" android:duration="50"/>
<item android:drawable="@drawable/a01_41" android:duration="50"/>
<item android:drawable="@drawable/a01_42" android:duration="50"/>
<item android:drawable="@drawable/a01_43" android:duration="50"/>
<item android:drawable="@drawable/a01_44" android:duration="50"/>
<item android:drawable="@drawable/a01_45" android:duration="50"/>
<item android:drawable="@drawable/a01_46" android:duration="50"/>
<item android:drawable="@drawable/a01_47" android:duration="50"/>
<item android:drawable="@drawable/a01_48" android:duration="50"/>
<item android:drawable="@drawable/a01_57" android:duration="50"/>
<item android:drawable="@drawable/a01_58" android:duration="50"/>
<item android:drawable="@drawable/a01_59" android:duration="50"/>
<item android:drawable="@drawable/a01_60" android:duration="50"/>
<item android:drawable="@drawable/a01_61" android:duration="50"/>
<item android:drawable="@drawable/a01_62" android:duration="50"/>
<item android:drawable="@drawable/a01_63" android:duration="50"/>
<item android:drawable="@drawable/a01_64" android:duration="50"/>
</animation-list>

這樣就基本搞定了,接下來就要在main中調(diào)用自定義的main就可以;如下:

package com.example.loading_drawable;

import android.app.Activity;
import android.os.Bundle;
import android.view.Gravity;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.LinearLayout;
import android.widget.LinearLayout.LayoutParams;

/**
* @author Administrator 慕課網(wǎng)下拉刷新進(jìn)度顯示控件
* 
*/
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
 super.onCreate(savedInstanceState);
 LinearLayout rootLayout = new LinearLayout(this);
 rootLayout.setOrientation(LinearLayout.VERTICAL);
 rootLayout.setLayoutParams(new LinearLayout.LayoutParams(
   LinearLayout.LayoutParams.MATCH_PARENT,
   LinearLayout.LayoutParams.MATCH_PARENT));
 rootLayout.setGravity(Gravity.CENTER);

 Button btn = new Button(this);
 btn.setText("展現(xiàn)動(dòng)畫");

 final MyImgView imgView = new MyImgView(MainActivity.this);
 imgView.setLayoutParams(new LinearLayout.LayoutParams(
   LinearLayout.LayoutParams.WRAP_CONTENT,
   LinearLayout.LayoutParams.WRAP_CONTENT));
 imgView.setVisibility(View.GONE);

 rootLayout.addView(btn);
 rootLayout.addView(imgView);

 setContentView(rootLayout);

 btn.setOnClickListener(new OnClickListener() {

  @Override
  public void onClick(View arg0) {
   imgView.setVisibility(View.VISIBLE);
  }
 });
}
}

這里是用自定義代碼布局文件做的,布局方便,插件代碼整合,如上所述,這個(gè)動(dòng)畫就完成了,只在需要的地方設(shè)置imgview為顯示,動(dòng)畫就會(huì)開啟,隱藏動(dòng)畫就會(huì)被關(guān)閉。

具體內(nèi)容到此為止,希望大家能夠喜歡。

相關(guān)文章

  • android使用viewpager計(jì)算偏移量實(shí)現(xiàn)選項(xiàng)卡功能

    android使用viewpager計(jì)算偏移量實(shí)現(xiàn)選項(xiàng)卡功能

    這篇文章主要為大家詳細(xì)介紹了android使用viewpager計(jì)算偏移量實(shí)現(xiàn)選項(xiàng)卡功能,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2018-12-12
  • Android消息通知Notification常用方法(發(fā)送消息和接收消息)

    Android消息通知Notification常用方法(發(fā)送消息和接收消息)

    最近在做消息通知類Notification的相關(guān)業(yè)務(wù),利用閑暇時(shí)間總結(jié)一下,主要分為兩部分來記錄:發(fā)送消息和接收消息,對(duì)Android消息通知相關(guān)知識(shí)感興趣的朋友一起看看吧
    2024-02-02
  • Android App開發(fā)的自動(dòng)化測(cè)試框架UI Automator使用教程

    Android App開發(fā)的自動(dòng)化測(cè)試框架UI Automator使用教程

    UI Automator為Android程序的UI開發(fā)提供了測(cè)試環(huán)境,這里我們就來看一下Android App開發(fā)的自動(dòng)化測(cè)試框架UI Automator使用教程,需要的朋友可以參考下
    2016-07-07
  • Android連接MySQL數(shù)據(jù)庫(kù)并進(jìn)行增刪改查操作示例講解

    Android連接MySQL數(shù)據(jù)庫(kù)并進(jìn)行增刪改查操作示例講解

    這篇文章主要介紹了Android 連接MySQL數(shù)據(jù)庫(kù)并進(jìn)行增刪改查操作示例講解,文中通過示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧
    2020-08-08
  • Android 通過cmake的方式接入opencv的方法步驟

    Android 通過cmake的方式接入opencv的方法步驟

    這篇文章主要介紹了Android 通過cmake的方式接入opencv的方法步驟,文中通過示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧
    2020-04-04
  • Android Studio Menu選擇菜單的建立方法

    Android Studio Menu選擇菜單的建立方法

    這篇文章主要介紹了Android Studio Menu選擇菜單的建立,小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,也給大家做個(gè)參考。一起跟隨小編過來看看吧
    2019-01-01
  • android自定義左側(cè)滑出菜單效果

    android自定義左側(cè)滑出菜單效果

    這篇文章主要為大家詳細(xì)介紹了android自定義左側(cè)滑出菜單效果,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2022-04-04
  • 使用Flutter定位包獲取地理位置

    使用Flutter定位包獲取地理位置

    本文詳細(xì)講解了使用Flutter定位包獲取地理位置的方法,文中通過示例代碼介紹的非常詳細(xì)。對(duì)大家的學(xué)習(xí)或工作具有一定的參考借鑒價(jià)值,需要的朋友可以參考下
    2021-11-11
  • Android實(shí)現(xiàn)好看的微信聊天氣泡效果

    Android實(shí)現(xiàn)好看的微信聊天氣泡效果

    在聊天類應(yīng)用中,通常用氣泡作為聊天內(nèi)容的背景色,比如微信的聊天背景,別人發(fā)過來的是白色的氣泡,自己發(fā)的是綠色的氣泡。本文將用Android實(shí)現(xiàn)好看的微信聊天氣泡效果,感興趣的可以了解一下
    2022-06-06
  • Android自定義View實(shí)現(xiàn)圓形進(jìn)度條

    Android自定義View實(shí)現(xiàn)圓形進(jìn)度條

    這篇文章主要為大家詳細(xì)介紹了Android自定義View實(shí)現(xiàn)圓形進(jìn)度條,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2022-06-06

最新評(píng)論

安丘市| 宁波市| 石阡县| 宜君县| 昭平县| 平泉县| 汕头市| 霸州市| 江津市| 彩票| 大城县| 黄石市| 宝兴县| 盐城市| 桂东县| 朝阳区| 建昌县| 喀喇沁旗| 合山市| 奉节县| 康马县| 连山| 巴彦淖尔市| 云龙县| 山丹县| 嫩江县| 鄂尔多斯市| 宁乡县| 东阳市| 马山县| 泗洪县| 阿尔山市| 徐州市| 迁西县| 云林县| 城固县| 长寿区| 米脂县| 大足县| 宁安市| 昂仁县|