我可以在Android中更改ProgressBar中的「進度線」的高度,因此它大於「背景線」以實現此效果嗎?如何更改進度條中「進度線」的高度?
我曾嘗試在後臺設置大小和我的自定義progressBarDrawable進步項目,但似乎並沒有工作。
<ProgressBar
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:indeterminate="false"
android:max="100"
android:progress="50"
android:paddingTop="10dp"
android:paddingBottom="10dp"
android:progressDrawable="@drawable/xml_progress_bar_line"
style="@style/Widget.AppCompat.ProgressBar.Horizontal"/>
這裏是xml_progress_bar_line.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>
<size
android:height="5dp"/>
<solid
android:color="@color/grey" />
</shape>
</item>
<item
android:id="@android:id/progress">
<clip>
<shape>
<size
android:height="10dp"/>
<solid
android:color="@color/green" />
<corners
android:radius="10dp"/>
</shape>
</clip>
</item>
</layer-list>
謝謝你快速和詳細的答案達揚,但它不是我所需要的。我實際上最終沒有使用進度條。 – hakobyanheghine