1
我想知道我怎麼可以創建一個進度條是這樣的: 的Android定製進度條
我已經繪製的圖像文件中的進度條的進度,我怎麼把它到進度條?
我的進度條XML文件:
<?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>
<gradient
android:angle="270"
android:startColor="#ffffffff"
android:endColor="#ffffffff"
android:centerColor="#ffffffff"
/>
</shape>
</item>
<item
android:id="@android:id/progress" >
<shape>
</shape>
</item>
</layer-list>
謝謝!
你檢查此鏈接http://stackoverflow.com/questions/16893209/how-to-customize-a-progress-酒吧功能於Android的? –