photon_progressbar.xml (853B)
1 <?xml version="1.0" encoding="utf-8"?> 2 3 <!-- This Source Code Form is subject to the terms of the Mozilla Public 4 - License, v. 2.0. If a copy of the MPL was not distributed with this 5 - file, You can obtain one at http://mozilla.org/MPL/2.0/. --> 6 7 <layer-list xmlns:android="http://schemas.android.com/apk/res/android"> 8 <item android:id="@android:id/progress"> 9 <scale 10 android:scaleGravity="fill_vertical|start" 11 android:scaleHeight="100%" 12 android:scaleWidth="100%"> 13 <shape> 14 <gradient 15 android:centerColor="@color/colorProgressGradientEnd" 16 android:endColor="@color/colorProgressGradientStart" 17 android:startColor="@color/colorProgressGradientStart" /> 18 </shape> 19 </scale> 20 </item> 21 </layer-list>