Android progressBar 自定義圓形旋轉圖片


項目需要中需要更換progressbar的旋轉背景,在網上找了幾種辦法,但是都有各自的問題

於是結合網上所講,研究了一下終於ok了:

一 首相在drawable文件夾中建立如下旋轉動畫文件

<?xml version="1.0" encoding="utf-8"?>
<animated-rotate xmlns:android="http://schemas.android.com/apk/res/android"    
    android:drawable="@drawable/loading1"    
    android:pivotX="50%"    
    android:pivotY="50%" />  

其中loading1即為您想用的圖片

二 在布局文件中設置progressbar

 <ProgressBar
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
         android:indeterminateDrawable="@drawable/progressbg"
         android:indeterminateOnly="true"
         android:indeterminateBehavior="repeat"
    
       />

ok ,萬事大吉


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM