leak_canary_secondary_button.xml
TLDR
This file defines a selector drawable for a secondary button in the LeakCanary Android core project.
Methods
No methods are defined in this file.
Classes
No classes are defined in this file.
<?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_6f" />
<corners android:radius="12dp" />
</shape>
</item>
<item>
<shape>
<solid android:color="@color/leak_canary_gray_3f" />
<corners android:radius="12dp" />
</shape>
</item>
</selector>