-6
A
回答
1
您需要創建兩個文件,繪製此
創建資源這兩個文件>繪製
1 circle_shape.xml
<?xml version="1.0" encoding="utf-8"?>
<shape
xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="ring"
android:innerRadiusRatio="2.8"
android:thickness="10dp"
android:useLevel="false">
<solid android:color="#CCC" />
</shape>
2. circular_progress_bar.xml
<?xml version="1.0" encoding="utf-8"?>
<rotate xmlns:android="http://schemas.android.com/apk/res/android"
android:fromDegrees="270"
android:toDegrees="270">
<shape
android:innerRadiusRatio="2.8"
android:shape="ring"
android:thickness="10dp"
android:useLevel="true"><!-- this line fixes the issue for lollipop api 21 -->
<gradient
android:angle="0"
android:endColor="#e2d631"
android:startColor="#dcdc38"
android:type="sweep"
android:useLevel="false" />
</shape>
</rotate>
現在在您的layout.xml中,即res> layout>(您的佈局文件)
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
>
<ProgressBar
android:id="@+id/pb_syllabus"
style="?android:attr/progressBarStyleHorizontal"
android:layout_width="120dp"
android:layout_height="120dp"
android:layout_centerInParent="true"
android:background="@drawable/circle_shape"
android:progress="60"
android:progressDrawable="@drawable/circular_progress_bar" />
<TextView
android:layout_width="40dp"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:gravity="center"
android:text="60%"
android:textColor="#ffffff"
android:textSize="21sp"
android:textStyle="bold" />
</RelativeLayout>
+0
謝謝你,兄弟,它幫助了我。 –
+0
如果此答案有效,請將其標記爲「完成」 –
相關問題
- 1. 如何創建的Android
- 2. 如何創建的Android
- 3. 如何創建Android的
- 4. 如何創建Android的
- 5. 如何創建的Android
- 6. Android的 - 如何在創建
- 7. 如何創建於Android的
- 8. 如何創建的Android
- 9. 如何創建Android的
- 10. 如何創建的Android
- 11. 如何創建與Android的
- 12. 如何創建的Android
- 13. 如何創建Android的
- 14. 如何創建的Android
- 15. 如何創建的Android
- 16. 如何創建Android的
- 17. 如何創建與Android的
- 18. 如何創建Android的
- 19. 如何創建Android中
- 20. 如何創建Android通知?
- 21. 如何創建卡swiper Android
- 22. 如何創建android系統
- 23. 如何創建Android應用
- 24. 如何創建Android上
- 25. 如何創建爲Android
- 26. 如何創建TimePickerDialog android
- 27. 如何創建Android登錄
- 28. 如何創建android佈局
- 29. 如何爲Android創建FileUploader
- 30. 的android:如何創建GridView的
您是否想要製作圓形進度條? –
可能[這](https://stackoverflow.com/questions/14688117/how-to-make-circle-custom-progress-bar-in-android)一個幫助你的兄弟.. –
'請建議的方式來創建此類型的自定義視圖。「我可以建議你谷歌的一些教程,而不是在這裏要求教程。 –