1<?xml version="1.0" encoding="utf-8"?> 2<!-- Copyright (C) 2015 The Android Open Source Project 3 4 Licensed under the Apache License, Version 2.0 (the "License"); 5 you may not use this file except in compliance with the License. 6 You may obtain a copy of the License at 7 8 http://www.apache.org/licenses/LICENSE-2.0 9 10 Unless required by applicable law or agreed to in writing, software 11 distributed under the License is distributed on an "AS IS" BASIS, 12 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 See the License for the specific language governing permissions and 14 limitations under the License. 15--> 16 17<!-- Variant of vector_drawable_progress_indeterminate_horizontal in frameworks/base/core/res, which 18 draws the whole height of the progress bar instead having blank space above and below the 19 bar. --> 20<vector xmlns:android="http://schemas.android.com/apk/res/android" 21 android:height="10dp" 22 android:width="360dp" 23 android:viewportHeight="10" 24 android:viewportWidth="360" > 25 <group 26 android:name="progress_group" 27 android:translateX="180" 28 android:translateY="5" > 29 <path 30 android:name="background_track" 31 android:pathData="M -180.0,-5.0 l 360.0,0 l 0,10.0 l -360.0,0 Z" 32 android:fillColor="?android:attr/colorControlActivated" 33 android:fillAlpha="?android:attr/disabledAlpha"/> 34 <group 35 android:name="rect2_grp" 36 android:translateX="-197.60001" 37 android:scaleX="0.1" > 38 <path 39 android:name="rect2" 40 android:pathData="M -144.0,-5.0 l 288.0,0 l 0,10.0 l -288.0,0 Z" 41 android:fillColor="?android:attr/colorControlActivated" /> 42 </group> 43 <group 44 android:name="rect1_grp" 45 android:translateX="-522.59998" 46 android:scaleX="0.1" > 47 <path 48 android:name="rect1" 49 android:pathData="M -144.0,-5.0 l 288.0,0 l 0,10.0 l -288.0,0 Z" 50 android:fillColor="?android:attr/colorControlActivated" /> 51 </group> 52 </group> 53</vector>