mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2025-01-09 13:43:22 +00:00
17 lines
745 B
XML
17 lines
745 B
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<layer-list
|
||
|
xmlns:android="http://schemas.android.com/apk/res/android">
|
||
|
<item>
|
||
|
<shape>
|
||
|
<solid android:color="?colorSurface" />
|
||
|
<corners android:topLeftRadius="4.0dip" android:topRightRadius="4.0dip" android:bottomLeftRadius="4.0dip" android:bottomRightRadius="4.0dip" />
|
||
|
</shape>
|
||
|
</item>
|
||
|
<item>
|
||
|
<shape>
|
||
|
<solid android:color="@color/mtrl_popupmenu_overlay_color" />
|
||
|
<corners android:topLeftRadius="4.0dip" android:topRightRadius="4.0dip" android:bottomLeftRadius="4.0dip" android:bottomRightRadius="4.0dip" />
|
||
|
<padding android:top="8.0dip" android:bottom="8.0dip" />
|
||
|
</shape>
|
||
|
</item>
|
||
|
</layer-list>
|