aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/app/src/main/res/drawable/list_item_background.xml
blob: f064676a65fd8a07a8c08e26093f53cb56dc2530 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
    <item>
        <selector>
            <item android:state_activated="true">
                <color android:color="?android:attr/colorControlHighlight" />
                <!-- TODO(msf): depending on whether or not we are in multiselect mode, choose instead:
                    <color android:color="?android:attr/colorControlActivated" />
                -->
            </item>
        </selector>
    </item>
    <item android:drawable="?android:attr/selectableItemBackground" />
</layer-list>