mirror of
https://github.com/beemdevelopment/Aegis.git
synced 2025-04-20 13:59:14 +00:00
Merge pull request #1482 from michaelschattgen/feature/rounded-progressbar
Make progressbar rounded on the right side
This commit is contained in:
commit
eb6e26a8e4
1 changed files with 7 additions and 2 deletions
|
@ -1,9 +1,14 @@
|
||||||
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
<item android:id="@android:id/progress">
|
<item android:id="@android:id/progress">
|
||||||
<clip>
|
<scale android:scaleWidth="100%">
|
||||||
<shape>
|
<shape>
|
||||||
<solid android:color="?attr/colorPrimaryAlternative"/>
|
<solid android:color="?attr/colorPrimaryAlternative"/>
|
||||||
|
<corners
|
||||||
|
android:topLeftRadius="0dp"
|
||||||
|
android:topRightRadius="2dp"
|
||||||
|
android:bottomLeftRadius="0dp"
|
||||||
|
android:bottomRightRadius="2dp" />
|
||||||
</shape>
|
</shape>
|
||||||
</clip>
|
</scale>
|
||||||
</item>
|
</item>
|
||||||
</layer-list>
|
</layer-list>
|
Loading…
Add table
Reference in a new issue