Files
memby/app/src/main/res/drawable/player_overlay_option_background.xml
T

24 lines
866 B
XML
Raw Normal View History

2026-07-29 15:26:40 +12:00
<?xml version="1.0" encoding="utf-8"?>
2026-08-06 22:33:56 +12:00
<!-- Focus is the only fill on the menu; the current choice is a quiet grey plate, so an
unfocused row never competes with the one the remote is on. -->
2026-07-29 15:26:40 +12:00
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_focused="true">
<shape android:shape="rectangle">
2026-08-06 22:33:56 +12:00
<solid android:color="#FF52B54B" />
<corners android:radius="10dp" />
2026-07-29 15:26:40 +12:00
</shape>
</item>
<item android:state_selected="true">
<shape android:shape="rectangle">
2026-08-06 22:33:56 +12:00
<solid android:color="#1AFFFFFF" />
<corners android:radius="10dp" />
2026-07-29 15:26:40 +12:00
</shape>
</item>
<item>
<shape android:shape="rectangle">
2026-08-06 22:33:56 +12:00
<solid android:color="#00000000" />
<corners android:radius="10dp" />
2026-07-29 15:26:40 +12:00
</shape>
</item>
</selector>