0
我已創建自定義的進度條樣式,如下應用進度條樣式全球的Android
<style name="ProgressBarStyle" parent="Widget.AppCompat.ProgressBar.Horizontal">
<item name="android:maxHeight">4dp</item>
<item name="android:minHeight">4dp</item>
<item name="android:progressDrawable">@drawable/custom_progressbar</item>
</style>
,我使用的
<ProgressBar
android:id="@+id/gpuProgress"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:progress="50"
style="@style/ProgressBarStyle"
/>
但我的問題是我不希望這種風格應用到每進度條,這就是爲什麼我想全球使用但它不起作用。
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<item name="colorPrimary">@color/colorPrimary</item>
<!-- I tried as below but its not working. -->
<item name="android:progressBarStyleHorizontal">@style/ProgressBarStyle</item>
</style>
是的,我試過了,但它也沒有工作。 –