Skip to content

Commit 9997fa2

Browse files
committed
Fix 5367082 correct assets for "next" and "previous" in lockscreen
Two issues found in the bug: 1/ The lockscreen layout for the transport controls was referring to the wrong framework icon: "previous" instead of "rew", and "next" instead of "ff". 2/ The framework icons for "previous" and "next" were wrong: "|<" should be "|<<" and ">|" should be ">>|". Copied the correct assets from the UX repository: btn_playback_ff_normal_holo_dark.png copied to ic_media_next.png btn_playback_rew_normal_holo_dark.png copied to ic_media_previous.png Note that those assets do NOT exist for ldpi Change-Id: I9c92d468a984f47f8e8f8c23e00f85a3d03da2ba
1 parent 0c265c8 commit 9997fa2

File tree

7 files changed

+2
-2
lines changed

7 files changed

+2
-2
lines changed
-163 Bytes
Loading
-173 Bytes
Loading
-324 Bytes
Loading
-317 Bytes
Loading
-464 Bytes
Loading
-477 Bytes
Loading

core/res/res/layout/keyguard_transport_control.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
android:layout_width="wrap_content"
6464
android:layout_height="wrap_content"
6565
android:layout_gravity="center"
66-
android:src="@drawable/ic_media_rew"
66+
android:src="@drawable/ic_media_previous"
6767
android:clickable="true"
6868
android:background="?android:attr/selectableItemBackground"
6969
android:padding="10dip"
@@ -94,7 +94,7 @@
9494
android:layout_height="wrap_content"
9595
android:layout_gravity="center"
9696
android:clickable="true"
97-
android:src="@drawable/ic_media_ff"
97+
android:src="@drawable/ic_media_next"
9898
android:background="?android:attr/selectableItemBackground"
9999
android:padding="10dip"
100100
android:contentDescription="@string/lockscreen_transport_next_description"/>

0 commit comments

Comments
 (0)