5
試圖製作自定義SeekBar。我想實現這一點。Android - 自定義SeekBar - 進度條上的圓角
我迄今所做的就是這個。我無法找到在進度條上四捨五入的方法。
有人能幫助這一點?這裏是我的代碼
main_activity.xml
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:gravity="center">
<SeekBar
android:id="@+id/seekBar1"
android:layout_width="match_parent"
android:layout_height="30dp"
android:progressDrawable="@drawable/styled_progress"
android:paddingLeft="15dp"
android:paddingRight="15dp"
android:progress="90"
android:thumb="@drawable/thumbler_small"
android:maxHeight="30dp"
android:layout_marginTop="125dp"
android:layout_marginBottom="15dp"
android:indeterminate="false" />
</LinearLayout>
styled_progress.xml
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:id="@android:id/background">
<shape>
<gradient
android:startColor="#d2e5ff"
android:endColor="#d2e5ff"
android:angle="45"
/>
<corners
android:bottomRightRadius="7dp"
android:bottomLeftRadius="7dp"
android:topLeftRadius="7dp"
android:topRightRadius="7dp"/>
</shape>
</item>
<item android:id="@android:id/secondaryProgress">
<clip>
<shape>
<gradient
android:startColor="#808080"
android:endColor="#808080"
android:angle="270"
/>
<corners
android:bottomRightRadius="7dp"
android:bottomLeftRadius="7dp"
android:topLeftRadius="7dp"
android:topRightRadius="7dp"/>
</shape>
</clip>
</item>
<item android:id="@android:id/progress">
<clip>
<shape>
<gradient
android:startColor="#c5e6eb"
android:endColor="#61cabb"
android:angle="45" />
<corners
android:bottomRightRadius="7dp"
android:bottomLeftRadius="7dp"
android:topLeftRadius="7dp"
android:topRightRadius="7dp"/>
</shape>
</clip>
</item>
</layer-list>
[圓角進度條內圓角進度]的可能重複(http://stackoverflow.com/questions/25130359/rounded-progress-within-rounded-progress-bar) –