Skip to content

Commit 3d43e52

Browse files
committed
activity_player_queue_control: Switch to app:tint instead of android:tint
../../src/main/res/layout/activity_player_queue_control.xml:208: Must use app:tint instead of android:tint Signed-off-by: Aayush Gupta <aayushgupta219@gmail.com>
1 parent f64e40e commit 3d43e52

2 files changed

Lines changed: 15 additions & 15 deletions

File tree

app/src/main/res/layout-land/activity_player_queue_control.xml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -122,8 +122,8 @@
122122
android:focusable="true"
123123
android:scaleType="fitCenter"
124124
android:src="@drawable/exo_controls_rewind"
125-
android:tint="?attr/colorAccent"
126-
android:contentDescription="@string/rewind" />
125+
android:contentDescription="@string/rewind"
126+
app:tint="?attr/colorAccent" />
127127

128128
<ImageButton
129129
android:id="@+id/control_play_pause"
@@ -139,8 +139,8 @@
139139
android:focusable="true"
140140
android:scaleType="fitCenter"
141141
android:src="@drawable/ic_pause"
142-
android:tint="?attr/colorAccent"
143-
android:contentDescription="@string/pause" />
142+
android:contentDescription="@string/pause"
143+
app:tint="?attr/colorAccent" />
144144

145145
<ProgressBar
146146
android:id="@+id/control_progress_bar"
@@ -172,8 +172,8 @@
172172
android:focusable="true"
173173
android:scaleType="fitCenter"
174174
android:src="@drawable/exo_controls_fastforward"
175-
android:tint="?attr/colorAccent"
176-
android:contentDescription="@string/forward" />
175+
android:contentDescription="@string/forward"
176+
app:tint="?attr/colorAccent" />
177177
</RelativeLayout>
178178

179179
<RelativeLayout
@@ -215,8 +215,8 @@
215215
android:focusable="true"
216216
android:scaleType="fitXY"
217217
android:src="@drawable/ic_repeat"
218-
android:tint="?attr/colorAccent"
219-
android:contentDescription="@string/notification_action_repeat" />
218+
android:contentDescription="@string/notification_action_repeat"
219+
app:tint="?attr/colorAccent" />
220220

221221
<View
222222
android:id="@+id/anchor"
@@ -236,8 +236,8 @@
236236
android:focusable="true"
237237
android:scaleType="fitXY"
238238
android:src="@drawable/ic_shuffle"
239-
android:tint="?attr/colorAccent"
240-
android:contentDescription="@string/notification_action_shuffle" />
239+
android:contentDescription="@string/notification_action_shuffle"
240+
app:tint="?attr/colorAccent" />
241241

242242
<androidx.appcompat.widget.AppCompatImageButton
243243
android:id="@+id/control_forward"

app/src/main/res/layout/activity_player_queue_control.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@
175175
android:focusable="true"
176176
android:scaleType="fitXY"
177177
android:src="@drawable/ic_repeat"
178-
android:tint="?attr/colorAccent"
178+
app:tint="?attr/colorAccent"
179179
tools:ignore="ContentDescription" />
180180

181181
<androidx.appcompat.widget.AppCompatImageButton
@@ -205,7 +205,7 @@
205205
android:focusable="true"
206206
android:scaleType="fitCenter"
207207
android:src="@drawable/exo_controls_rewind"
208-
android:tint="?attr/colorAccent" />
208+
app:tint="?attr/colorAccent" />
209209

210210
<ImageButton
211211
android:id="@+id/control_play_pause"
@@ -220,7 +220,7 @@
220220
android:focusable="true"
221221
android:scaleType="fitCenter"
222222
android:src="@drawable/ic_pause"
223-
android:tint="?attr/colorAccent"
223+
app:tint="?attr/colorAccent"
224224
tools:ignore="ContentDescription" />
225225

226226
<ProgressBar
@@ -255,7 +255,7 @@
255255
android:focusable="true"
256256
android:scaleType="fitCenter"
257257
android:src="@drawable/exo_controls_fastforward"
258-
android:tint="?attr/colorAccent" />
258+
app:tint="?attr/colorAccent" />
259259

260260
<androidx.appcompat.widget.AppCompatImageButton
261261
android:id="@+id/control_forward"
@@ -285,7 +285,7 @@
285285
android:focusable="true"
286286
android:scaleType="fitXY"
287287
android:src="@drawable/ic_shuffle"
288-
android:tint="?attr/colorAccent"
288+
app:tint="?attr/colorAccent"
289289
tools:ignore="ContentDescription" />
290290

291291
</RelativeLayout>

0 commit comments

Comments
 (0)