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

Android自定義加載控件實(shí)現(xiàn)數(shù)據(jù)加載動(dòng)畫

 更新時(shí)間:2016年04月18日 14:20:31   投稿:lijiao  
這篇文章主要為大家詳細(xì)介紹了Android自定義加載控件實(shí)現(xiàn)數(shù)據(jù)加載動(dòng)畫的相關(guān)資料,仿美團(tuán)、京東數(shù)據(jù)加載動(dòng)畫、小人奔跑動(dòng)畫,感興趣的小伙伴們可以參考一下

本文實(shí)例為大家分享了Android自定義加載控件,第一次小人跑動(dòng)的加載效果眼前一亮,相比傳統(tǒng)的PrograssBar高大上不止一點(diǎn),于是走起,自定義了控件LoadingView去實(shí)現(xiàn)動(dòng)態(tài)效果,可直接在xml中使用,具體實(shí)現(xiàn)如下

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
 * 數(shù)據(jù)加載控件
 */
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加載動(dòng)畫的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>  

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家學(xué)習(xí)使用Android自定義加載控件有所啟發(fā)。

相關(guān)文章

  • Android視頻點(diǎn)播的實(shí)現(xiàn)代碼(邊播邊緩存)

    Android視頻點(diǎn)播的實(shí)現(xiàn)代碼(邊播邊緩存)

    本篇文章主要結(jié)合了Android視頻點(diǎn)播的實(shí)現(xiàn)代碼(邊播邊緩存),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2017-05-05
  • Android ListView實(shí)現(xiàn)仿iPhone實(shí)現(xiàn)左滑刪除按鈕的簡(jiǎn)單實(shí)例

    Android ListView實(shí)現(xiàn)仿iPhone實(shí)現(xiàn)左滑刪除按鈕的簡(jiǎn)單實(shí)例

    下面小編就為大家?guī)硪黄狝ndroid ListView實(shí)現(xiàn)仿iPhone實(shí)現(xiàn)左滑刪除按鈕的簡(jiǎn)單實(shí)例。小編覺得挺不錯(cuò)的,現(xiàn)在就分享給大家,也給大家做個(gè)參考。一起跟隨小編過來看看吧
    2016-08-08
  • Android 高仿斗魚滑動(dòng)驗(yàn)證碼

    Android 高仿斗魚滑動(dòng)驗(yàn)證碼

    這篇文章主要介紹了Android 高仿斗魚滑動(dòng)驗(yàn)證碼的相關(guān)資料,非常不錯(cuò),具有參考借鑒價(jià)值,需要的朋友可以參考下
    2016-11-11
  • Android studio 運(yùn)行main 函數(shù)的方法

    Android studio 運(yùn)行main 函數(shù)的方法

    這篇文章主要介紹了Android studio 運(yùn)行main 函數(shù)的方法,本文給大家介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或工作具有一定的參考借鑒價(jià)值,需要的朋友可以參考下
    2020-09-09
  • 詳解Android中PopupWindow在7.0后適配的解決

    詳解Android中PopupWindow在7.0后適配的解決

    本篇文章主要介紹了詳解Android中PopupWindow在7.0后適配的解決,小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,也給大家做個(gè)參考。一起跟隨小編過來看看吧
    2018-05-05
  • Android實(shí)現(xiàn)手勢(shì)控制ImageView圖片大小

    Android實(shí)現(xiàn)手勢(shì)控制ImageView圖片大小

    這篇文章主要介紹了Android實(shí)現(xiàn)手勢(shì)控制ImageView圖片大小的相關(guān)資料,需要的朋友可以參考下
    2016-02-02
  • Kotlin函數(shù)使用示例教程

    Kotlin函數(shù)使用示例教程

    這篇文章主要為大家介紹了Kotlin函數(shù)的使用示例教程,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進(jìn)步,早日升職加薪
    2022-06-06
  • Android開發(fā)之OpenGL繪制2D圖形的方法分析

    Android開發(fā)之OpenGL繪制2D圖形的方法分析

    這篇文章主要介紹了Android開發(fā)之OpenGL繪制2D圖形的方法,結(jié)合實(shí)例形式分析了Android使用OpenGL ES的圖形繪制組件實(shí)現(xiàn)2D圖形繪制的原理、步驟及相關(guān)代碼注意事項(xiàng),需要的朋友可以參考下
    2017-09-09
  • Android 中cookie的處理詳解

    Android 中cookie的處理詳解

    這篇文章主要介紹了Android 中cookie的處理詳解的相關(guān)資料,主要介紹Android 中Cookie 的操作,希望通過本文能幫助到大家,需要的朋友可以參考下
    2017-08-08
  • Android?搜索框架使用詳解

    Android?搜索框架使用詳解

    這篇文章主要為大家介紹了Android?搜索框架使用詳解,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進(jìn)步,早日升職加薪
    2022-11-11

最新評(píng)論

封丘县| 伊金霍洛旗| 合肥市| 惠州市| 泸溪县| 涿鹿县| 汉川市| 梁平县| 德格县| 五指山市| 报价| 青川县| 邹平县| 连南| 武夷山市| 武定县| 阳城县| 叙永县| 正宁县| 彭泽县| 玉门市| 三原县| 乌海市| 哈密市| 隆尧县| 台江县| 平凉市| 康保县| 肃宁县| 枞阳县| 宣城市| 霸州市| 和田市| 和静县| 呼图壁县| 寿阳县| 任丘市| 利辛县| 安庆市| 遂昌县| 澳门|