36 lines
1.3 KiB
XML
36 lines
1.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- Copyright (c) 2019 The Brave Authors. All rights reserved.
|
|
This Source Code Form is subject to the terms of the Mozilla Public
|
|
License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
You can obtain one at https://mozilla.org/MPL/2.0/.
|
|
-->
|
|
|
|
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
<item android:id="@android:id/secondaryProgress">
|
|
<shape
|
|
android:shape="ring"
|
|
android:thicknessRatio="80"
|
|
android:useLevel="true">
|
|
<solid android:color="@color/onboarding_progressbar_secondary_bg" />
|
|
</shape>
|
|
</item>
|
|
|
|
<item android:id="@android:id/progress">
|
|
<rotate
|
|
android:fromDegrees="270"
|
|
android:toDegrees="270">
|
|
<shape
|
|
android:shape="ring"
|
|
android:thicknessRatio="80"
|
|
android:useLevel="true">
|
|
<gradient
|
|
android:angle="270"
|
|
android:endColor="@color/onboarding_progress_end_color"
|
|
android:centerColor="@color/onboarding_progress_mid_color"
|
|
android:startColor="@color/onboarding_progress_start_color" />
|
|
</shape>
|
|
</rotate>
|
|
</item>
|
|
</layer-list>
|