中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Android自定義View實現loading動畫加載效果

發布時間:2020-09-17 09:18:27 來源:腳本之家 閱讀:353 作者:謝棟_ 欄目:移動開發

 項目開發中對Loading的處理是比較常見的,安卓系統提供的不太美觀,引入第三發又太麻煩,這時候自己定義View來實現這個效果,并且進行封裝抽取給項目提供統一的loading樣式是最好的解決方式了。

先自定義一個View,繼承自LinearLayout,在Layout中,添加布局控件

/** 
 * Created by xiedong on 2017/3/7. 
 */ 
public class Loading_view extends LinearLayout { 
  private Context mContext; 
  private RelativeLayout loading_content; 
  private ImageView img; 
  private TextView loadingText; 
  private AnimationDrawable animationDrawable; 
  public Loading_view(Context context) { 
    super(context); 
    mContext = context; 
    setupView(); 
  } 
  public Loading_view(Context context, AttributeSet attrs) { 
    super(context, attrs); 
    mContext = context; 
    setupView(); 
  } 
  public Loading_view(Context context, AttributeSet attrs, int defStyleAttr) { 
    super(context, attrs, defStyleAttr); 
    mContext = context; 
    setupView(); 
  } 
  private void setupView() { 
//  View view= LayoutInflater.from(mContext).inflate(R.layout.loading_view_layout,this);   //一定要把布局添加進容器,不能為null 
    View.inflate(mContext, R.layout.loading_view_layout, this); 
    loading_content = (RelativeLayout) findViewById(R.id.loading_content); 
    img = (ImageView) findViewById(R.id.img); 
    loadingText = (TextView) findViewById(R.id.text); 
    img.setImageResource(R.drawable.anim_loading); 
    animationDrawable = ((AnimationDrawable) img.getDrawable()); 
    animationDrawable.start(); 
  } 
  public void setMessage(String msg) { 
    loadingText.setText(msg); 
  } 
} 

自定義View的布局文件:

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
  android:layout_width="match_parent" 
  android:layout_height="match_parent" 
  android:background="#90000000" 
  android:gravity="center"> 
  <RelativeLayout 
    android:id="@+id/loading_content" 
    android:layout_width="150dp" 
    android:layout_height="120dp" 
    android:background="#40ffffff"> 
    <ImageView 
      android:id="@+id/img" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:layout_centerInParent="true" 
      android:background="@mipmap/ic_launcher" /> 
    <TextView 
      android:id="@+id/text" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:layout_below="@+id/img" 
      android:layout_centerHorizontal="true" 
      android:text="加載中..." 
      /> 
  </RelativeLayout> 
</LinearLayout> 

這里使用AnimationDrawable的方式來實現動畫效果,AnimationDrawable的list文件如下:

<animation-list xmlns:android="http://schemas.android.com/apk/res/android" 
  android:oneshot="false"> 
  <item 
    android:drawable="@drawable/loading1" 
    android:duration="100" /> 
  <item 
    android:drawable="@drawable/loading2" 
    android:duration="100" /> 
  <item 
    android:drawable="@drawable/loading3" 
    android:duration="100" /> 
  <item 
    android:drawable="@drawable/loading10" 
    android:duration="100" /> 
</animation-list> 

自定義View部分的工作完成之后,接下來就是如何在項目中具體運用。在相應的布局中使用的時候,一定要記得把此布局文件add進ViewGroup中,因為該自定義的View跟調用他的View是獨立的兩個View,沒有完成add的話,loading布局可能不會顯示出來。

private Loading_view loading_view; 
 loading_view = new Loading_view(this); //實例化自定義VIew 
 loading_view.setMessage("loading文字提示內容...."); 
 //添加當前自定義View進主布局文件 
 addContentView(loading_view, new ViewGroup.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.MATCH_PARENT)); 

以上所述是小編給大家介紹的Android自定義View實現loading動畫加載效果,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對億速云網站的支持!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

青州市| 双牌县| 神木县| 沽源县| 武城县| 固原市| 会同县| 东乌| 仪征市| 祁东县| 城口县| 禹城市| 通许县| 峨边| 罗山县| 佛学| 延津县| 石河子市| 蚌埠市| 广安市| 承德县| 莆田市| 安达市| 深泽县| 崇义县| 霞浦县| 会东县| 迭部县| 怀柔区| 分宜县| 寿光市| 璧山县| 建始县| 虹口区| 芷江| 温泉县| 和平县| 绥芬河市| 高安市| 文安县| 疏附县|