leak_canary_toast_background.xml
TLDR
The leak_canary_toast_background.xml
file is a drawable resource file in the LeakCanary Android Core project. It defines a shape with a solid color and rounded corners.
Methods
N/A
Classes
N/A
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="#cc000000"/>
<corners android:radius="16dp"/>
</shape>