Files
memby/app/src/main/res/drawable/next_up_primary_button.xml
T
2026-07-29 15:26:55 +12:00

18 lines
655 B
XML

<?xml version="1.0" encoding="utf-8"?>
<!-- Focused reads as a filled white pill, matching the transport controls: on a TV the
focused item has to be unmistakable from across the room. -->
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_focused="true">
<shape android:shape="rectangle">
<solid android:color="#FFFFFFFF" />
<corners android:radius="8dp" />
</shape>
</item>
<item>
<shape android:shape="rectangle">
<solid android:color="#FF52B54B" />
<corners android:radius="8dp" />
</shape>
</item>
</selector>