Android實現(xiàn)仿慕課網(wǎng)下拉加載動畫
具體實現(xiàn)方法就不多介紹了先附上源碼,相信大家都容易看的懂:
這里為了讓這個動畫效果可被復(fù)用,于是就繼承了ImageView 去實現(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 {
// 動畫圖層類
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) 當(dāng)控件被顯示時就調(diào)用 開啟動畫效果,反之
*/
@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)動畫");
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);
}
});
}
}
這里是用自定義代碼布局文件做的,布局方便,插件代碼整合,如上所述,這個動畫就完成了,只在需要的地方設(shè)置imgview為顯示,動畫就會開啟,隱藏動畫就會被關(guān)閉。
具體內(nèi)容到此為止,希望大家能夠喜歡。
- android ListView結(jié)合xutils3仿微信實現(xiàn)下拉加載更多
- Android ListView實現(xiàn)下拉加載功能
- Android仿網(wǎng)易一元奪寶客戶端下拉加載動畫效果(一)
- Android中使用RecyclerView實現(xiàn)下拉刷新和上拉加載
- Android下拉刷新上拉加載控件(適用于所有View)
- Android RecyclerView實現(xiàn)下拉刷新和上拉加載
- android開發(fā)教程之實現(xiàn)listview下拉刷新和上拉刷新效果
- Android實現(xiàn)上拉加載更多以及下拉刷新功能(ListView)
- Android RecyclerView 上拉加載更多及下拉刷新功能的實現(xiàn)方法
- PullToRefreshListView實現(xiàn)多條目加載上拉刷新和下拉加載
相關(guān)文章
Android自定義控件實現(xiàn)望遠(yuǎn)鏡效果
這篇文章主要為大家詳細(xì)介紹了Android自定義控件實現(xiàn)望遠(yuǎn)鏡效果,文中示例代碼介紹的非常詳細(xì),具有一定的參考價值,感興趣的小伙伴們可以參考一下2019-11-11
Android編程實現(xiàn)對電池狀態(tài)的監(jiān)視功能示例
這篇文章主要介紹了Android編程實現(xiàn)對電池狀態(tài)的監(jiān)視功能,涉及Android基于廣播實現(xiàn)針對電源電量的判定與監(jiān)視技巧,需要的朋友可以參考下2016-11-11
Android實現(xiàn)讀取相機(相冊)圖片并進(jìn)行剪裁
在 Android應(yīng)用中,很多時候我們需要實現(xiàn)上傳圖片,或者直接調(diào)用手機上的拍照功能拍照處理然后直接顯示并上傳功能,下面將講述調(diào)用相機拍照處理圖片然后顯示和調(diào)用手機相冊中的圖片處理然后顯示的功能2015-08-08
官網(wǎng)項目Jetpack?Startup庫學(xué)習(xí)
這篇文章主要為大家介紹了官網(wǎng)項目Jetpack?Startup庫學(xué)習(xí),有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進(jìn)步,早日升職加薪2023-02-02
Android應(yīng)用創(chuàng)建桌面快捷方式代碼
這篇文章主要為大家詳細(xì)介紹了Android應(yīng)用創(chuàng)建桌面快捷方式代碼,具有一定的參考價值,感興趣的小伙伴們可以參考一下2016-09-09
Android開發(fā)之DatePicker和TimePicker實現(xiàn)選擇日期時間功能示例
這篇文章主要介紹了Android開發(fā)之DatePicker和TimePicker實現(xiàn)選擇日期時間功能,結(jié)合實例形式分析了Android DatePicker和TimePicker組件的功能、常用函數(shù)、布局及日期時間選擇相關(guān)操作技巧,需要的朋友可以參考下2019-03-03
Android App開發(fā)中RecyclerView控件的基本使用教程
這篇文章主要介紹了Android App開發(fā)中RecyclerView控件的基本使用教程,RecyclerView在Android 5.0之后伴隨著Material Design出現(xiàn),管理布局方面十分強大,需要的朋友可以參考下2016-04-04
Android App中使用Pull解析XML格式數(shù)據(jù)的使用示例
這篇文章主要介紹了Android App中使用Pull解析XML格式數(shù)據(jù)的使用示例,Pull是Android中自帶的XML解析器,Java里也是一樣用:D需要的朋友可以參考下2016-04-04

