Почему не устанавливается стиль на ProgressBar в Android?
Файл стиля:
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/androd">
<item android:id="@+id/background">
<shape android:shape="line">
<stroke
android:width="24dp"
android:color="#fff"
android:dashWidth="4dp"
android:dashGap="4dp" />
</shape>
</item>
<item android:id="@+id/progress">
<clip
android:clipOrientation="horizontal"
android:gravity="start">
<shape android:shape="line">
<stroke
android:width="24dp"
android:color="#2196F3"
android:dashWidth="4dp"
android:dashGap="4dp" />
</shape>
</clip>
</item>
</layer-list>
Разметка ProgressBar:
<ProgressBar
android:layout_width="match_parent"
android:layout_height="24dp"
android:layout_centerVertical="true"
android:layout_toStartOf="@id/stopPlayButton"
android:progressDrawable="@drawable/horizontal_p_bar"
style="?android:attr/progressBarStyleHorizontal"/>
ProgressBar просто не видно
Upd: Не работало почему то только с моими размерами, с другими работает :/