main

square/leakcanary

Last updated at: 29/12/2023 09:38

leak_canary_tab_background.xml

TLDR

This file is an XML file that defines a selector for the background of a tab. It contains two items that define the background drawable based on the state of the tab.

Methods (if applicable)

N/A

Classes (if applicable)

N/A

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
  <item android:state_pressed="false" android:drawable="@android:color/transparent" />
  <item android:drawable="@color/leak_canary_gray_darkest_25p" />
</selector>