Progressbar的Progress和Background顏色能夠經過自定義Drawable的形式來實現.android
<?xml version="1.0" encoding="utf-8"?> <layer-list xmlns:android="http://schemas.android.com/apk/res/android"> <item android:id="@android:id/background"> <shape> <solid android:color="@color/black"/> </shape> </item> <item android:id="@android:id/progress"> <clip> <shape> <solid android:color="@color/colorPrimary"/> </shape> </clip> </item> </layer-list>
須要注意三個點: 1. item屬性對象的id,background對應"android:background",progress對應"android:progress". 2. shape屬性生效的前提是在progress的shape的外面加一個"clip"的標籤,而secondProgress則不能加"clip"標籤. 3. 在佈局裏經過android:progressDrawable來調用Drawable文件. 4.seekbar用法和ProgressBar大體是同樣的,不過seekbar額外享有一個android:thumb屬性,就是控制進度的按鈕.ide
更新ProgressBar進度用到的方法: 1. setMax(int max):設置ProgressBar總長度,好比視頻長度. 2. setProgress(int progress):設置ProgressBar遊標所處的位置. 更新Progress咱們通常是放在單獨的線程裏佈局
//監聽播放器進度變化 new Thread(){ @Override public void run() { super.run(); while(isplaying){ editProgressview.setProgress(videoPlayer.getCurrentPosition()); BaseDef.sleep(1000); } } }.start();