
Attribute progressTint is only used in API level 21 and higher (current min is 16)
<ProgressBar android:id="@+id/progress_bar" android:theme="@style/LinearProgress" style="@android:style/Widget.Holo.Light.ProgressBar.Horizontal" android:progressTint="@color/red_light" android:layout_width="match_parent" android:layout_height="6dp" android:layout_gravity="center" android:layout_marginTop="10dp"/>
Solution Change To
<ProgressBar android:id="@+id/progress_bar" android:theme="@style/LinearProgress" style="@android:style/Widget.Holo.Light.ProgressBar.Horizontal" android:progressTint="@color/red_light" android:layout_width="match_parent" android:layout_height="6dp" android:layout_gravity="center" android:layout_marginTop="10dp" tools:targetApi="lollipop" />
0 comments:
Post a Comment