Android实现仿慕课网下拉加载动画

具体实现方法就不多介绍了先附上源码,相信大家都容易看的懂:

这里为了让这个动画效果可被复用,于是就继承了ImageView 去实现某些方法

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 {
// 动画图层类
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");
}

/**
* 开启动画效果
*/
public void startAnim() {
if (bg_anim != null) {
 bg_anim.start();
}
}

/**
* 停止动画效果
*/
public void stopAnim() {
if (bg_anim != null && bg_anim.isRunning()) {
 bg_anim.stop();
}
}

/*
* (non-Javadoc)
*
* @see android.widget.ImageView#setVisibility(int) 当控件被显示时就调用 开启动画效果,反之
*/
@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中调用自定义的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 慕课网下拉刷新进度显示控件
*
*/
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("展现动画");

 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);
  }
 });
}
}

这里是用自定义代码布局文件做的,布局方便,插件代码整合,如上所述,这个动画就完成了,只在需要的地方设置imgview为显示,动画就会开启,隐藏动画就会被关闭。

具体内容到此为止,希望大家能够喜欢。

(0)

相关推荐

  • Android加载Gif动画实现代码

    Android加载Gif动画如何实现?相信大家都很好奇,本文就为大家揭晓,内容如下 <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_he

  • Android 游戏引擎libgdx 资源加载进度百分比显示案例分析

    因为案例比较简单,所以简单用AndroidApplication -> Game -> Stage 搭建框架 一.主入口,无特殊 复制代码 代码如下: public class App extends AndroidApplication { @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); //初始化Demo initialize(new Demo()

  • Android自定义view实现阻尼效果的加载动画

    效果: 需要知识: 1. 二次贝塞尔曲线 2. 动画知识 3. 基础自定义view知识 先来解释下什么叫阻尼运动 阻尼振动是指,由于振动系统受到摩擦和介质阻力或其他能耗而使振幅随时间逐渐衰减的振动,又称减幅振动.衰减振动.[1] 不论是弹簧振子还是单摆由于外界的摩擦和介质阻力总是存在,在振动过程中要不断克服外界阻力做功,消耗能量,振幅就会逐渐减小,经过一段时间,振动就会完全停下来.这种振幅随时间减小的振动称为阻尼振动.因为振幅与振动的能量有关,阻尼振动也就是能量不断减少的振动.阻尼振动是非简谐运

  • Android实现跳动的小球加载动画效果

    先来看看效果图 跳动的小球做这个动画,需掌握: 1.属性动画 2.Path类.Canvas类 3.贝塞尔曲线 4.SurfaceView用法 5.自定义attr属性 6 .架构: 状态模式,控制器 7 .自由落体,抛物线等概念 不多说了,直接上码 1.DancingView.java public class DancingView extends SurfaceView implements SurfaceHolder.Callback { public static final int ST

  • Android绘制圆形百分比加载圈效果

    先看一组加载效果图,有点粉粉的加载圈: 自定义这样的圆形加载圈还是比较简单的,主要是用到Canvans的绘制文本,绘制圆和绘制圆弧的api: /** * 绘制圆 * @param cx 圆心x坐标 * @param cy 圆心y坐标 * @param radius 圆的半径 * @param paint 画笔 */ public void drawCircle(float cx, float cy, float radius, @NonNull Paint paint) { ... } /**

  • Android自定义加载圈动画效果

    本文实例为大家分享了Android自定义加载圈动画展示的具体代码,供大家参考,具体内容如下 实现如下效果: 该效果图主要有3个动画: 1.旋转动画 2.聚合动画 3.扩散动画 以上3个动画都是通过ValueAnimator来实现,配合自定义View的onDraw()方法实现不断的刷新和绘制界面. 具体代码如下: package blog.csdn.net.mchenys.myanimationloading; import android.animation.Animator; import a

  • Android使用glide加载gif动画设置播放次数

    在使用glide加载gif动画,有时需要设置播放的次数,然后播放玩一次或者几次之后,需要在播放完做一些其他的操作,直接看代码: Glide.with(this) .load(R.drawable.xiaoguo) .diskCacheStrategy(DiskCacheStrategy.SOURCE) .listener(new RequestListener<Integer, GlideDrawable>() { @Override public boolean onException(Ex

  • Android自定义加载控件实现数据加载动画

    本文实例为大家分享了Android自定义加载控件,第一次小人跑动的加载效果眼前一亮,相比传统的PrograssBar高大上不止一点,于是走起,自定义了控件LoadingView去实现动态效果,可直接在xml中使用,具体实现如下 package com.*****.*****.widget; import android.content.Context; import android.graphics.drawable.AnimationDrawable; import android.util.

  • Android自定义加载loading view动画组件

    在github上找的一个有点酷炫的loading动画https://github.com/Fichardu/CircleProgress 我写写使用步骤 自定义view(CircleProgress )的代码 package com.hysmarthotel.view; import com.hysmarthotel.roomcontrol.R; import com.hysmarthotel.util.EaseInOutCubicInterpolator; import android.ani

  • Android Glide图片加载(加载监听、加载动画)

    本文实例为大家分享了Android Glide图片加载的具体代码,供大家参考,具体内容如下 1.普通用法 Glide.with(context) .load(url) .into(view); with中可以放context.activity.fragment..:当放activity.fragment时glide会根据生命周期来加载图片.推荐使用activity. 2.设置加载中和加载失败的图片 Glide.with(context) .load(url) .placeholder(R.dra

随机推荐