android 加载数据等待动画,Android自定义加载控件实现数据加载动画

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

9af6a40e43c1af361607f223d16f5be6.png

package com.*****.*****.widget;

import android.content.Context;

import android.graphics.drawable.AnimationDrawable;

import android.util.AttributeSet;

import android.view.LayoutInflater;

import android.view.View;

import android.widget.ImageView;

import android.widget.RelativeLayout;

import android.widget.TextView;

/**

* Created by Xiaomu

* 数据加载控件

*/

public class LoadingView extends RelativeLayout {

private Context mContext;

private ImageView loadingIv;

private TextView loadingTv;

public LoadingView(Context context) {

super(context);

this.mContext = context;

initView();

}

public LoadingView(Context context, AttributeSet attrs) {

super(context, attrs);

this.mContext = context;

initView();

}

private void initView() {

View view = LayoutInflater.from(mContext).inflate(R.layout.loading, null);

loadingIv = (ImageView) view.findViewById(R.id.loadingIv);

loadingTv = (TextView) view.findViewById(R.id.loadingTv);

AnimationDrawable animationDrawable = (AnimationDrawable) loadingIv.getBackground();

if (animationDrawable != null)

animationDrawable.start();

addView(view);

}

public ImageView getLoadingIv() {

return loadingIv;

}

public TextView getLoadingTv() {

return loadingTv;

}

}

2. xml布局文件

android:layout_width="match_parent"

android:layout_height="wrap_content">

android:id="@+id/loadingIv"

android:layout_width="@dimen/dimen_144_dip"

android:layout_height="@dimen/dimen_162_dip"

android:layout_centerHorizontal="true"

android:background="@anim/loading_anim" />

android:id="@+id/loadingTv"

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:layout_alignBottom="@+id/loadingIv"

android:layout_centerHorizontal="true"

android:gravity="center_horizontal"

android:text="正在加载中..."

android:textSize="15sp" />

3. loading_anim加载动画的xml

xmlns:android="http://schemas.android.com/apk/res/android"

android:oneshot="false">

android:drawable="@drawable/progress_loading_image_01"

android:duration="150" />

android:drawable="@drawable/progress_loading_image_02"

android:duration="150" />

以上就是本文的全部内容,希望对大家学习使用Android自定义加载控件有所启发。

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值