leak_canary_gray_fill.xml
TLDR
This file is an XML drawable resource file used in the Demo Projects project. It defines a selector with two items, each containing a shape with a solid color and rounded corners.
Classes
None
Methods
None
<?xml version="1.0" encoding="UTF-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="true">
<shape>
<solid android:color="@color/leak_canary_gray_3f" />
<corners android:radius="20dp" />
</shape>
</item>
<item>
<shape>
<solid android:color="@color/leak_canary_gray" />
<corners android:radius="20dp" />
</shape>
</item>
</selector>