欢迎来到代码驿站!

Android代码

当前位置:首页 > 移动开发 > Android代码

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

时间:2020-10-05 21:34:03|栏目:Android代码|点击:

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

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布局文件    

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="match_parent"
  android:layout_height="wrap_content">
 
  <ImageView
    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" />
 
  <TextView
    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" />
 
</RelativeLayout>

3. loading_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/progress_loading_image_01"
    android:duration="150" />
  <item
    android:drawable="@drawable/progress_loading_image_02"
    android:duration="150" />
</animation-list>  

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

上一篇:Android自适应不同屏幕大小的全部方法

栏    目:Android代码

下一篇:Android音频录制MediaRecorder之简易的录音软件实现代码

本文标题:Android自定义加载控件实现数据加载动画

本文地址:http://www.codeinn.net/misctech/7273.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有