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

溫馨提示×

溫馨提示×

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

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

Android應用中的ProgressBar樣式怎么利用Shape實現

發布時間:2020-12-03 16:10:04 來源:億速云 閱讀:134 作者:Leah 欄目:移動開發

本篇文章給大家分享的是有關Android應用中的ProgressBar樣式怎么利用Shape實現,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。

使用Shape實現樣式

使用Shape中的ring實現,如下布局ring.xml

<shape xmlns:android="http://schemas.android.com/apk/res/android"
  android:shape="ring"
  android:thickness="5dp"
  android:useLevel="false" >
  <gradient
    android:endColor="#888"
    android:startColor="#ccc"
    android:type="sweep"
    android:useLevel="false" />
</shape>

使用rotate使之旋轉

如下progressbar.xml

<&#63;xml version="1.0" encoding="utf-8"&#63;>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
  <item>
    <rotate 
      android:drawable="@drawable/ring"
      android:pivotX="50%"
      android:pivotY="50%"
      android:fromDegrees="0"
      android:toDegrees="1080"/>
  </item>
</layer-list>

注意:其中fromDegrees與toDegrees之差要是360的倍數,不然中間會有轉的時候會跳一下,另外,這個差越大就轉得越快,具體效果大家可以自行試一下

使用

<ProgressBar
  
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:indeterminateDrawable="@drawable/progressbar" <!-- 這里使用自定義的progressbar樣式 -->
/>

更簡單的方法

直接使用一個布局文件就可以實現:

<&#63;xml version="1.0" encoding="utf-8"&#63;>
<rotate xmlns:android="http://schemas.android.com/apk/res/android"
  android:fromDegrees="0"
  android:pivotX="50%"
  android:pivotY="50%"
  android:toDegrees="1080" >

  <shape
    android:shape="ring"
    android:thickness="5dp"
    android:useLevel="false" >
    <gradient
      android:endColor="#888"
      android:startColor="#ccc"
      android:type="sweep"
      android:useLevel="false" />
  </shape>
</rotate>

以上就是Android應用中的ProgressBar樣式怎么利用Shape實現,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。

向AI問一下細節

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

AI

诸暨市| 百色市| 大兴区| 怀仁县| 上犹县| 丰城市| 屏边| 东乡县| 游戏| 渝北区| 平安县| 温州市| 北海市| 图片| 丰原市| 井冈山市| 宁陕县| 明星| 牟定县| 云林县| 南投市| 阿鲁科尔沁旗| 西平县| 双桥区| 临武县| 九江县| 隆安县| 桐庐县| 孝感市| 绥化市| 康平县| 松桃| 交口县| 乌拉特前旗| 林州市| 井冈山市| 石家庄市| 大庆市| 安多县| 科技| 和田县|