aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/ui/src/main/res/drawable/list_item_background.xml
blob: cb540dd7a5dc187bf22a6717938b6dfc20569fdf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?xml version="1.0" encoding="utf-8"?><!--
  ~ Copyright © 2017-2025 WireGuard LLC. All Rights Reserved.
  ~ SPDX-License-Identifier: Apache-2.0
  -->
<layer-list xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto">
    <item>
        <selector>
            <item
                android:state_activated="true"
                app:state_multiselected="true">
                <color android:color="?attr/colorSurfaceVariant" />
            </item>
            <item android:state_activated="true">
                <color android:color="?attr/colorControlHighlight" />
            </item>
        </selector>
    </item>
    <item android:drawable="?attr/selectableItemBackground" />
</layer-list>