国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 系統(tǒng) > Android > 正文

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

2020-02-21 17:28:37
字體:
供稿:網(wǎng)友

安卓系統(tǒng)自己的加載動畫太簡單了,長時間后會造成視覺疲勞,所以有時候需要定義一些有趣的動畫,也因為我們通常專注于業(yè)務和性能處理,接下來武林技術(shù)頻道小編為大家?guī)?a target="_blank">Android自定義加載控件實現(xiàn)數(shù)據(jù)加載動畫,一起來看看吧!

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加載動畫的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自定義加載控件實現(xiàn)數(shù)據(jù)加載動畫,已經(jīng)有了自己的認識,武林技術(shù)頻道為大家提供更多知識,希望幫到您。

發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 甘泉县| 庆阳市| 青神县| 南华县| 安庆市| 二连浩特市| 同仁县| 阿鲁科尔沁旗| 安乡县| 鄂尔多斯市| 聊城市| 德兴市| 哈巴河县| 那曲县| 安仁县| 青龙| 东丰县| 文登市| 防城港市| 贵德县| 三亚市| 临桂县| 南澳县| 江陵县| 岑溪市| 米泉市| 遂宁市| 遂平县| 上杭县| 视频| 宜章县| 富锦市| 两当县| 井冈山市| 遵化市| 万安县| 高安市| 伊金霍洛旗| 胶州市| 陈巴尔虎旗| 河西区|