magiccube / src / main / res / drawable / progress_bar.xml @ 9b739a74
| 1 |
<?xml version="1.0" encoding="utf-8"?>
|
|---|---|
| 2 |
<layer-list xmlns:android="http://schemas.android.com/apk/res/android"> |
| 3 |
<item android:id="@android:id/background"> |
| 4 |
<shape>
|
| 5 |
<solid android:color="@color/white" /> |
| 6 |
</shape>
|
| 7 |
</item>
|
| 8 |
|
| 9 |
<item android:id="@android:id/progress"> |
| 10 |
<clip>
|
| 11 |
<shape>
|
| 12 |
<solid android:color="?veryDarkC" /> |
| 13 |
</shape>
|
| 14 |
</clip>
|
| 15 |
</item>
|
| 16 |
|
| 17 |
</layer-list>
|
| 18 |
|